interface CfnAnycastIpListMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CloudFront.Mixins.CfnAnycastIpListMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscloudfront/mixins#CfnAnycastIpListMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.cloudfront.mixins.CfnAnycastIpListMixinProps |
Python | aws_cdk.mixins_preview.aws_cloudfront.mixins.CfnAnycastIpListMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_cloudfront » mixins » CfnAnycastIpListMixinProps |
Properties for CfnAnycastIpListPropsMixin.
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 cfnAnycastIpListMixinProps: cloudfront_mixins.CfnAnycastIpListMixinProps = {
ipAddressType: 'ipAddressType',
ipamCidrConfigs: [{
cidr: 'cidr',
ipamPoolArn: 'ipamPoolArn',
}],
ipCount: 123,
name: 'name',
};
Properties
| Name | Type | Description |
|---|---|---|
| ip | string | The IP address type for the Anycast static IP list. |
| ip | number | The number of IP addresses in the Anycast static IP list. |
| ipam | IResolvable | (IResolvable | Ipam)[] | |
| name? | string | The name of the Anycast static IP list. |
ipAddressType?
Type:
string
(optional)
The IP address type for the Anycast static IP list.
ipCount?
Type:
number
(optional)
The number of IP addresses in the Anycast static IP list.
ipamCidrConfigs?
Type:
IResolvable | (IResolvable | Ipam)[]
(optional)
name?
Type:
string
(optional)
The name of the Anycast static IP list.

.NET
Go
Java
Python
TypeScript