List Label Groups
lookoutequipment_list_label_groups | R Documentation |
Returns a list of the label groups¶
Description¶
Returns a list of the label groups.
Usage¶
lookoutequipment_list_label_groups(LabelGroupNameBeginsWith, NextToken,
MaxResults)
Arguments¶
LabelGroupNameBeginsWith |
The beginning of the name of the label groups to be listed. |
NextToken |
An opaque pagination token indicating where to continue the listing of label groups. |
MaxResults |
Specifies the maximum number of label groups to list. |
Value¶
A list with the following syntax:
list(
NextToken = "string",
LabelGroupSummaries = list(
list(
LabelGroupName = "string",
LabelGroupArn = "string",
CreatedAt = as.POSIXct(
"2015-01-01"
),
UpdatedAt = as.POSIXct(
"2015-01-01"
)
)
)
)
Request syntax¶
svc$list_label_groups(
LabelGroupNameBeginsWith = "string",
NextToken = "string",
MaxResults = 123
)