Class CfnSubnetCidrBlockProps
Properties for defining a CfnSubnetCidrBlock
.
Inheritance
System.Object
CfnSubnetCidrBlockProps
Implements
Namespace: Amazon.CDK.AWS.EC2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnSubnetCidrBlockProps : Object, ICfnSubnetCidrBlockProps
Syntax (vb)
Public Class CfnSubnetCidrBlockProps
Inherits Object
Implements ICfnSubnetCidrBlockProps
Remarks
See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.EC2;
var cfnSubnetCidrBlockProps = new CfnSubnetCidrBlockProps {
SubnetId = "subnetId",
// the properties below are optional
Ipv6CidrBlock = "ipv6CidrBlock",
Ipv6IpamPoolId = "ipv6IpamPoolId",
Ipv6NetmaskLength = 123
};
Synopsis
Constructors
CfnSubnetCidrBlockProps() |
Properties
Ipv6CidrBlock | The IPv6 network range for the subnet, in CIDR notation. |
Ipv6IpamPoolId | An IPv6 IPAM pool ID for the subnet. |
Ipv6NetmaskLength | An IPv6 netmask length for the subnet. |
SubnetId | The ID of the subnet. |
Constructors
CfnSubnetCidrBlockProps()
public CfnSubnetCidrBlockProps()
Properties
Ipv6CidrBlock
The IPv6 network range for the subnet, in CIDR notation.
public string Ipv6CidrBlock { get; set; }
Property Value
System.String
Remarks
Ipv6IpamPoolId
An IPv6 IPAM pool ID for the subnet.
public string Ipv6IpamPoolId { get; set; }
Property Value
System.String
Remarks
Ipv6NetmaskLength
An IPv6 netmask length for the subnet.
public Nullable<double> Ipv6NetmaskLength { get; set; }
Property Value
System.Nullable<System.Double>
Remarks
SubnetId
The ID of the subnet.
public string SubnetId { get; set; }
Property Value
System.String