interface CfnConnectionGroupMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CloudFront.Mixins.CfnConnectionGroupMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscloudfront/mixins#CfnConnectionGroupMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.cloudfront.mixins.CfnConnectionGroupMixinProps |
Python | aws_cdk.mixins_preview.aws_cloudfront.mixins.CfnConnectionGroupMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_cloudfront » mixins » CfnConnectionGroupMixinProps |
Properties for CfnConnectionGroupPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as cloudfront_mixins } from '@aws-cdk/mixins-preview/aws-cloudfront';
const cfnConnectionGroupMixinProps: cloudfront_mixins.CfnConnectionGroupMixinProps = {
anycastIpListId: 'anycastIpListId',
enabled: false,
ipv6Enabled: false,
name: 'name',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| anycast | string | The ID of the Anycast static IP list. |
| enabled? | boolean | IResolvable | Whether the connection group is enabled. |
| ipv6 | boolean | IResolvable | IPv6 is enabled for the connection group. |
| name? | string | The name of the connection group. |
| tags? | Cfn[] | A complex type that contains zero or more Tag elements. |
anycastIpListId?
Type:
string
(optional)
The ID of the Anycast static IP list.
enabled?
Type:
boolean | IResolvable
(optional)
Whether the connection group is enabled.
ipv6Enabled?
Type:
boolean | IResolvable
(optional)
IPv6 is enabled for the connection group.
name?
Type:
string
(optional)
The name of the connection group.
tags?
Type:
Cfn[]
(optional)
A complex type that contains zero or more Tag elements.

.NET
Go
Java
Python
TypeScript