interface CfnSubnetCidrBlockMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.EC2.Mixins.CfnSubnetCidrBlockMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsec2/mixins#CfnSubnetCidrBlockMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.ec2.mixins.CfnSubnetCidrBlockMixinProps |
Python | aws_cdk.mixins_preview.aws_ec2.mixins.CfnSubnetCidrBlockMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_ec2 » mixins » CfnSubnetCidrBlockMixinProps |
Properties for CfnSubnetCidrBlockPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as ec2_mixins } from '@aws-cdk/mixins-preview/aws-ec2';
const cfnSubnetCidrBlockMixinProps: ec2_mixins.CfnSubnetCidrBlockMixinProps = {
ipv6CidrBlock: 'ipv6CidrBlock',
ipv6IpamPoolId: 'ipv6IpamPoolId',
ipv6NetmaskLength: 123,
subnetId: 'subnetId',
};
Properties
| Name | Type | Description |
|---|---|---|
| ipv6 | string | The IPv6 network range for the subnet, in CIDR notation. |
| ipv6 | string | An IPv6 IPAM pool ID for the subnet. |
| ipv6 | number | An IPv6 netmask length for the subnet. |
| subnet | string | The ID of the subnet. |
ipv6CidrBlock?
Type:
string
(optional)
The IPv6 network range for the subnet, in CIDR notation.
ipv6IpamPoolId?
Type:
string
(optional)
An IPv6 IPAM pool ID for the subnet.
ipv6NetmaskLength?
Type:
number
(optional)
An IPv6 netmask length for the subnet.
subnetId?
Type:
string
(optional)
The ID of the subnet.

.NET
Go
Java
Python
TypeScript