CidrCollectionReference
- class aws_cdk.aws_route53.CidrCollectionReference(*, cidr_collection_arn, cidr_collection_id)
Bases:
object
A 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 import aws_route53 as route53 cidr_collection_reference = 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.