CidrCollectionReference
- class aws_cdk.interfaces.aws_route53.CidrCollectionReference(*, cidr_collection_arn, cidr_collection_id)
Bases:
objectA reference to a CidrCollection resource.
- Parameters:
cidr_collection_arn (
str) – The ARN of the CidrCollection resource.cidr_collection_id (
str) – The Id of the CidrCollection resource.
- 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.interfaces import aws_route53 as interfaces_aws_route53 cidr_collection_reference = interfaces_aws_route53.CidrCollectionReference( cidr_collection_arn="cidrCollectionArn", cidr_collection_id="cidrCollectionId" )
Attributes
- cidr_collection_arn
The ARN of the CidrCollection resource.
- cidr_collection_id
The Id of the CidrCollection resource.