Skip to content

Create Label Group

lookoutequipment_create_label_group R Documentation

Creates a group of labels

Description

Creates a group of labels.

Usage

lookoutequipment_create_label_group(LabelGroupName, FaultCodes,
  ClientToken, Tags)

Arguments

LabelGroupName

[required] Names a group of labels.

Data in this field will be retained for service usage. Follow best practices for the security of your data.

FaultCodes

The acceptable fault codes (indicating the type of anomaly associated with the label) that can be used with this label group.

Data in this field will be retained for service usage. Follow best practices for the security of your data.

ClientToken

[required] A unique identifier for the request to create a label group. If you do not set the client request token, Lookout for Equipment generates one.

Tags

Tags that provide metadata about the label group you are creating.

Data in this field will be retained for service usage. Follow best practices for the security of your data.

Value

A list with the following syntax:

list(
  LabelGroupName = "string",
  LabelGroupArn = "string"
)

Request syntax

svc$create_label_group(
  LabelGroupName = "string",
  FaultCodes = list(
    "string"
  ),
  ClientToken = "string",
  Tags = list(
    list(
      Key = "string",
      Value = "string"
    )
  )
)