CfnAnycastIpListProps

class aws_cdk.aws_cloudfront.CfnAnycastIpListProps(*, ip_count, name, ip_address_type=None, ipam_cidr_configs=None, tags=None)

Bases: object

Properties 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]) – The IP address type for the Anycast static IP list.

  • ipam_cidr_configs (Union[IResolvable, Sequence[Union[IResolvable, IpamCidrConfigProperty, Dict[str, Any]]], None])

  • tags (Union[TagsProperty, Dict[str, Any], None]) – A complex type that contains zero or more Tag elements.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-anycastiplist.html

ExampleMetadata:

fixture=_generated

Example:

from aws_cdk import CfnTag
# 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",
    ipam_cidr_configs=[cloudfront.CfnAnycastIpList.IpamCidrConfigProperty(
        cidr="cidr",
        ipam_pool_arn="ipamPoolArn"
    )],
    tags=cloudfront.CfnAnycastIpList.TagsProperty(
        items=[CfnTag(
            key="key",
            value="value"
        )]
    )
)

Attributes

ip_address_type

The IP address type for the Anycast static IP list.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-anycastiplist.html#cfn-cloudfront-anycastiplist-ipaddresstype

ip_count

The number of IP addresses in the Anycast static IP list.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-anycastiplist.html#cfn-cloudfront-anycastiplist-ipcount

ipam_cidr_configs

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-anycastiplist.html#cfn-cloudfront-anycastiplist-ipamcidrconfigs

Type:

see

name

The name of the Anycast static IP list.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-anycastiplist.html#cfn-cloudfront-anycastiplist-name

tags

A complex type that contains zero or more Tag elements.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-anycastiplist.html#cfn-cloudfront-anycastiplist-tags