interface CfnCidrCollectionProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Route53.CfnCidrCollectionProps |
Java | software.amazon.awscdk.services.route53.CfnCidrCollectionProps |
Python | aws_cdk.aws_route53.CfnCidrCollectionProps |
TypeScript | @aws-cdk/aws-route53 » CfnCidrCollectionProps |
Properties for defining a CfnCidrCollection.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as route53 from '@aws-cdk/aws-route53';
const cfnCidrCollectionProps: route53.CfnCidrCollectionProps = {
name: 'name',
// the properties below are optional
locations: [{
cidrList: ['cidrList'],
locationName: 'locationName',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| name | string | The name of a CIDR collection. |
| locations? | IResolvable | Location | IResolvable[] | A complex type that contains information about the list of CIDR locations. |
name
Type:
string
The name of a CIDR collection.
locations?
Type:
IResolvable | Location | IResolvable[]
(optional)
A complex type that contains information about the list of CIDR locations.

.NET
Java
Python
TypeScript