CfnCidrCollectionProps

class aws_cdk.aws_route53.CfnCidrCollectionProps(*, name, locations=None)

Bases: object

Properties for defining a CfnCidrCollection.

Parameters:
  • name (str) – The name of a CIDR collection.

  • locations (Union[IResolvable, Sequence[Union[IResolvable, LocationProperty, Dict[str, Any]]], None]) – A complex type that contains information about the list of CIDR locations.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-cidrcollection.html

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_route53 as route53

cfn_cidr_collection_props = route53.CfnCidrCollectionProps(
    name="name",

    # the properties below are optional
    locations=[route53.CfnCidrCollection.LocationProperty(
        cidr_list=["cidrList"],
        location_name="locationName"
    )]
)

Attributes

locations

A complex type that contains information about the list of CIDR locations.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-cidrcollection.html#cfn-route53-cidrcollection-locations

name

The name of a CIDR collection.

See:

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