Class AllocateIpv6CidrRequest
Request for subnet IPv6 CIDRs to be allocated for a VPC.
Inheritance
System.Object
AllocateIpv6CidrRequest
Implements
Namespace: Amazon.CDK.AWS.EC2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class AllocateIpv6CidrRequest : Object, IAllocateIpv6CidrRequest
Syntax (vb)
Public Class AllocateIpv6CidrRequest
Inherits Object
Implements 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
Constructors
AllocateIpv6CidrRequest() |
Properties
AllocatedSubnets | List of subnets allocated with IPv4 CIDRs. |
Ipv6Cidrs | The IPv6 CIDRs to be allocated to the subnets. |
Constructors
AllocateIpv6CidrRequest()
public AllocateIpv6CidrRequest()
Properties
AllocatedSubnets
List of subnets allocated with IPv4 CIDRs.
public IAllocatedSubnet[] AllocatedSubnets { get; set; }
Property Value
Ipv6Cidrs
The IPv6 CIDRs to be allocated to the subnets.
public string[] Ipv6Cidrs { get; set; }
Property Value
System.String[]