CfnTrafficDistributionGroupProps
- class aws_cdk.aws_connect.CfnTrafficDistributionGroupProps(*, instance_arn, name, description=None, tags=None)
Bases:
object
Properties for defining a
CfnTrafficDistributionGroup
.- Parameters:
instance_arn (
str
) – The Amazon Resource Name (ARN).name (
str
) – The name of the traffic distribution group.description (
Optional
[str
]) – The description of the traffic distribution group.tags (
Optional
[Sequence
[Union
[CfnTag
,Dict
[str
,Any
]]]]) – The tags used to organize, track, or control access for this resource. For example, {“tags”: {“key1”:”value1”, “key2”:”value2”} }.
- See:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_connect as connect cfn_traffic_distribution_group_props = connect.CfnTrafficDistributionGroupProps( instance_arn="instanceArn", name="name", # the properties below are optional description="description", tags=[CfnTag( key="key", value="value" )] )
Attributes
- description
The description of the traffic distribution group.
- instance_arn
The Amazon Resource Name (ARN).
- name
The name of the traffic distribution group.
- tags
The tags used to organize, track, or control access for this resource.
For example, {“tags”: {“key1”:”value1”, “key2”:”value2”} }.