CfnAnycastIpListMixinProps
- class aws_cdk.mixins_preview.aws_cloudfront.mixins.CfnAnycastIpListMixinProps(*, ip_address_type=None, ipam_cidr_configs=None, ip_count=None, name=None)
Bases:
objectProperties for CfnAnycastIpListPropsMixin.
- Parameters:
ip_address_type (
Optional[str]) – The IP address type for the Anycast static IP list.ipam_cidr_configs (
Union[IResolvable,Sequence[Union[IResolvable,IpamCidrConfigProperty,Dict[str,Any]]],None])ip_count (
Union[int,float,None]) – The number of IP addresses in the Anycast static IP list.name (
Optional[str]) – The name of the Anycast static IP list.
- 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_cloudfront import mixins as cloudfront_mixins cfn_anycast_ip_list_mixin_props = cloudfront_mixins.CfnAnycastIpListMixinProps( ip_address_type="ipAddressType", ipam_cidr_configs=[cloudfront_mixins.CfnAnycastIpListPropsMixin.IpamCidrConfigProperty( cidr="cidr", ipam_pool_arn="ipamPoolArn" )], ip_count=123, name="name" )
Attributes
- ip_address_type
The IP address type for the Anycast static IP list.
- ip_count
The number of IP addresses in the Anycast static IP list.
- ipam_cidr_configs
-
- Type:
see
- name
The name of the Anycast static IP list.