Interface IAllocateIpv6CidrRequest
Request for subnet IPv6 CIDRs to be allocated for a VPC.
Namespace: Amazon.CDK.AWS.EC2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IAllocateIpv6CidrRequest
Syntax (vb)
Public Interface IAllocateIpv6CidrRequest
Remarks
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 allocateIpv6CidrRequest = new AllocateIpv6CidrRequest {
AllocatedSubnets = new [] { new AllocatedSubnet {
Cidr = "cidr",
// the properties below are optional
Ipv6Cidr = "ipv6Cidr"
} },
Ipv6Cidrs = new [] { "ipv6Cidrs" }
};
Synopsis
Properties
| AllocatedSubnets | List of subnets allocated with IPv4 CIDRs. |
| Ipv6Cidrs | The IPv6 CIDRs to be allocated to the subnets. |
Properties
AllocatedSubnets
List of subnets allocated with IPv4 CIDRs.
IAllocatedSubnet[] AllocatedSubnets { get; }
Property Value
Remarks
ExampleMetadata: fixture=_generated
Ipv6Cidrs
The IPv6 CIDRs to be allocated to the subnets.
string[] Ipv6Cidrs { get; }
Property Value
string[]
Remarks
ExampleMetadata: fixture=_generated