interface LocationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Route53.Mixins.CfnCidrCollectionPropsMixin.LocationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsroute53/mixins#CfnCidrCollectionPropsMixin_LocationProperty |
Java | software.amazon.awscdk.mixins.preview.services.route53.mixins.CfnCidrCollectionPropsMixin.LocationProperty |
Python | aws_cdk.mixins_preview.aws_route53.mixins.CfnCidrCollectionPropsMixin.LocationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_route53 » mixins » CfnCidrCollectionPropsMixin » 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 { mixins as route53_mixins } from '@aws-cdk/mixins-preview/aws-route53';
const locationProperty: route53_mixins.CfnCidrCollectionPropsMixin.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[]
(optional)
List of CIDR blocks.
locationName?
Type:
string
(optional)
The CIDR collection location name.

.NET
Go
Java
Python
TypeScript