CfnCidrCollectionMixinProps
- class aws_cdk.mixins_preview.aws_route53.mixins.CfnCidrCollectionMixinProps(*, locations=None, name=None)
Bases:
objectProperties for CfnCidrCollectionPropsMixin.
- Parameters:
locations (
Union[IResolvable,Sequence[Union[IResolvable,LocationProperty,Dict[str,Any]]],None]) – A complex type that contains information about the list of CIDR locations.name (
Optional[str]) – The name of a CIDR collection.
- 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_route53 import mixins as route53_mixins cfn_cidr_collection_mixin_props = route53_mixins.CfnCidrCollectionMixinProps( locations=[route53_mixins.CfnCidrCollectionPropsMixin.LocationProperty( cidr_list=["cidrList"], location_name="locationName" )], name="name" )
Attributes
- locations
A complex type that contains information about the list of CIDR locations.
- name
The name of a CIDR collection.