Get Groups
xray_get_groups | R Documentation |
Retrieves all active group details¶
Description¶
Retrieves all active group details.
Usage¶
xray_get_groups(NextToken)
Arguments¶
NextToken |
Pagination token. |
Value¶
A list with the following syntax:
list(
Groups = list(
list(
GroupName = "string",
GroupARN = "string",
FilterExpression = "string",
InsightsConfiguration = list(
InsightsEnabled = TRUE|FALSE,
NotificationsEnabled = TRUE|FALSE
)
)
),
NextToken = "string"
)
Request syntax¶
svc$get_groups(
NextToken = "string"
)