CfnAnycastIpListProps
- class aws_cdk.aws_cloudfront.CfnAnycastIpListProps(*, ip_count, name, ip_address_type=None, tags=None)
Bases:
objectProperties for defining a
CfnAnycastIpList.- Parameters:
ip_count (
Union[int,float]) – The number of IP addresses in the Anycast static IP list.name (
str) – The name of the Anycast static IP list.ip_address_type (
Optional[str])tags (
Union[TagsProperty,Dict[str,Any],None]) – A complex type that contains zero or moreTagelements.
- 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 import aws_cloudfront as cloudfront cfn_anycast_ip_list_props = cloudfront.CfnAnycastIpListProps( ip_count=123, name="name", # the properties below are optional ip_address_type="ipAddressType", tags=cloudfront.CfnAnycastIpList.TagsProperty( items=[CfnTag( key="key", value="value" )] ) )
Attributes
- ip_address_type
-
- Type:
see
- ip_count
The number of IP addresses in the Anycast static IP list.
- name
The name of the Anycast static IP list.
- tags
A complex type that contains zero or more
Tagelements.