interface LocationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Route53.CfnCidrCollection.LocationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsroute53#CfnCidrCollection_LocationProperty |
Java | software.amazon.awscdk.services.route53.CfnCidrCollection.LocationProperty |
Python | aws_cdk.aws_route53.CfnCidrCollection.LocationProperty |
TypeScript | aws-cdk-lib » aws_route53 » CfnCidrCollection » LocationProperty |
Specifies the list of CIDR blocks for a CIDR location.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_route53 as route53 } from 'aws-cdk-lib';
const locationProperty: route53.CfnCidrCollection.LocationProperty = {
cidrList: ['cidrList'],
locationName: 'locationName',
};
Properties
| Name | Type | Description |
|---|---|---|
| cidr | string[] | List of CIDR blocks. |
| location | string | The CIDR collection location name. |
cidrList
Type:
string[]
List of CIDR blocks.
locationName
Type:
string
The CIDR collection location name.

.NET
Go
Java
Python
TypeScript