interface LocationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Route53.CfnCidrCollectionPropsMixin.LocationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsroute53#CfnCidrCollectionPropsMixin_LocationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.route53.CfnCidrCollectionPropsMixin.LocationProperty |
Python | aws_cdk.cfn_property_mixins.aws_route53.CfnCidrCollectionPropsMixin.LocationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_route53 » 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 { aws_route53 as route53 } from '@aws-cdk/cfn-property-mixins';
const locationProperty: route53.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