CfnCidrCollectionProps
- class aws_cdk.aws_route53.CfnCidrCollectionProps(*, name, locations=None)
Bases:
objectProperties for defining a
CfnCidrCollection.- Parameters:
name (
str) – The name of a CIDR collection.locations (
Union[IResolvable,Sequence[Union[LocationProperty,Dict[str,Any],IResolvable]],None]) – A complex type that contains information about the list of CIDR locations.
- Link:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.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.
- name
The name of a CIDR collection.