CfnAnycastIpListMixinProps
- class aws_cdk.mixins_preview.aws_cloudfront.mixins.CfnAnycastIpListMixinProps(*, ip_address_type=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.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", 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.
- name
The name of the Anycast static IP list.