Create Traffic Distribution Group
| connect_create_traffic_distribution_group | R Documentation |
Creates a traffic distribution group given an Amazon Connect instance that has been replicated¶
Description¶
Creates a traffic distribution group given an Amazon Connect instance that has been replicated.
The SignInConfig distribution is available only on a default
TrafficDistributionGroup (see the IsDefault parameter in the
TrafficDistributionGroup
data type). If you call update_traffic_distribution with a modified
SignInConfig and a non-default TrafficDistributionGroup, an
InvalidRequestException is returned.
For more information about creating traffic distribution groups, see Set up traffic distribution groups in the Amazon Connect Administrator Guide.
Usage¶
connect_create_traffic_distribution_group(Name, Description, InstanceId,
ClientToken, Tags)
Arguments¶
Name |
[required] The name for the traffic distribution group. |
Description |
A description for the traffic distribution group. |
InstanceId |
[required] The identifier of the Amazon Connect instance that has
been replicated. You can find the |
ClientToken |
A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If not provided, the Amazon Web Services SDK populates this field. For more information about idempotency, see Making retries safe with idempotent APIs. |
Tags |
The tags used to organize, track, or control access for this resource. For example, { "Tags": {"key1":"value1", "key2":"value2"} }. |
Value¶
A list with the following syntax:
list(
Id = "string",
Arn = "string"
)
Request syntax¶
svc$create_traffic_distribution_group(
Name = "string",
Description = "string",
InstanceId = "string",
ClientToken = "string",
Tags = list(
"string"
)
)