interface CfnCidrCollectionMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Route53.CfnCidrCollectionMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsroute53#CfnCidrCollectionMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.route53.CfnCidrCollectionMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_route53.CfnCidrCollectionMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_route53 » CfnCidrCollectionMixinProps |
Properties for CfnCidrCollectionPropsMixin.
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 cfnCidrCollectionMixinProps: route53.CfnCidrCollectionMixinProps = {
locations: [{
cidrList: ['cidrList'],
locationName: 'locationName',
}],
name: 'name',
};
Properties
| Name | Type | Description |
|---|---|---|
| locations? | IResolvable | (IResolvable | Location)[] | A complex type that contains information about the list of CIDR locations. |
| name? | string | The name of a CIDR collection. |
locations?
Type:
IResolvable | (IResolvable | Location)[]
(optional)
A complex type that contains information about the list of CIDR locations.
name?
Type:
string
(optional)
The name of a CIDR collection.

.NET
Go
Java
Python
TypeScript