interface CfnSubnetCidrBlockMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.EC2.CfnSubnetCidrBlockMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsec2#CfnSubnetCidrBlockMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.ec2.CfnSubnetCidrBlockMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_ec2.CfnSubnetCidrBlockMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_ec2 » 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 { aws_ec2 as ec2 } from '@aws-cdk/cfn-property-mixins';
const cfnSubnetCidrBlockMixinProps: ec2.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 | ISubnet | 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 | ISubnet
(optional)
The ID of the subnet.

.NET
Go
Java
Python
TypeScript