CfnTrafficDistributionGroupMixinProps
- class aws_cdk.mixins_preview.aws_connect.mixins.CfnTrafficDistributionGroupMixinProps(*, description=None, instance_arn=None, name=None, tags=None)
Bases:
objectProperties for CfnTrafficDistributionGroupPropsMixin.
- Parameters:
description (
Optional[str]) – The description of the traffic distribution group.instance_arn (
Optional[str]) – The Amazon Resource Name (ARN).name (
Optional[str]) – The name 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.mixins_preview.aws_connect import mixins as connect_mixins cfn_traffic_distribution_group_mixin_props = connect_mixins.CfnTrafficDistributionGroupMixinProps( description="description", instance_arn="instanceArn", name="name", 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”} }.