interface CfnTrafficDistributionGroupMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Connect.CfnTrafficDistributionGroupMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsconnect#CfnTrafficDistributionGroupMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.connect.CfnTrafficDistributionGroupMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_connect.CfnTrafficDistributionGroupMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_connect » CfnTrafficDistributionGroupMixinProps |
Properties for CfnTrafficDistributionGroupPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_connect as connect } from '@aws-cdk/cfn-property-mixins';
const cfnTrafficDistributionGroupMixinProps: connect.CfnTrafficDistributionGroupMixinProps = {
description: 'description',
instanceArn: 'instanceArn',
name: 'name',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | The description of the traffic distribution group. |
| instance | string | The Amazon Resource Name (ARN). |
| name? | string | The name of the traffic distribution group. |
| tags? | Cfn[] | The tags used to organize, track, or control access for this resource. |
description?
Type:
string
(optional)
The description of the traffic distribution group.
instanceArn?
Type:
string
(optional)
The Amazon Resource Name (ARN).
name?
Type:
string
(optional)
The name of the traffic distribution group.
tags?
Type:
Cfn[]
(optional)
The tags used to organize, track, or control access for this resource.
For example, {"tags": {"key1":"value1", "key2":"value2"} }.

.NET
Go
Java
Python
TypeScript