interface CfnCidrCollectionMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Route53.Mixins.CfnCidrCollectionMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsroute53/mixins#CfnCidrCollectionMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.route53.mixins.CfnCidrCollectionMixinProps |
Python | aws_cdk.mixins_preview.aws_route53.mixins.CfnCidrCollectionMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_route53 » mixins » 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 { mixins as route53_mixins } from '@aws-cdk/mixins-preview/aws-route53';
const cfnCidrCollectionMixinProps: route53_mixins.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