Get Group
xray_get_group | R Documentation |
Retrieves group resource details¶
Description¶
Retrieves group resource details.
Usage¶
xray_get_group(GroupName, GroupARN)
Arguments¶
GroupName |
The case-sensitive name of the group. |
GroupARN |
The ARN of the group that was generated on creation. |
Value¶
A list with the following syntax:
list(
Group = list(
GroupName = "string",
GroupARN = "string",
FilterExpression = "string",
InsightsConfiguration = list(
InsightsEnabled = TRUE|FALSE,
NotificationsEnabled = TRUE|FALSE
)
)
)
Request syntax¶
svc$get_group(
GroupName = "string",
GroupARN = "string"
)