List Traffic Distribution Groups
connect_list_traffic_distribution_groups | R Documentation |
Lists traffic distribution groups¶
Description¶
Lists traffic distribution groups.
Usage¶
connect_list_traffic_distribution_groups(MaxResults, NextToken,
InstanceId)
Arguments¶
MaxResults |
The maximum number of results to return per page. |
NextToken |
The token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results. |
InstanceId |
The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance. |
Value¶
A list with the following syntax:
list(
NextToken = "string",
TrafficDistributionGroupSummaryList = list(
list(
Id = "string",
Arn = "string",
Name = "string",
InstanceArn = "string",
Status = "CREATION_IN_PROGRESS"|"ACTIVE"|"CREATION_FAILED"|"PENDING_DELETION"|"DELETION_FAILED"|"UPDATE_IN_PROGRESS",
IsDefault = TRUE|FALSE
)
)
)
Request syntax¶
svc$list_traffic_distribution_groups(
MaxResults = 123,
NextToken = "string",
InstanceId = "string"
)