Show / Hide Table of Contents

Class AllocateIpv6CidrRequest

Request for subnet IPv6 CIDRs to be allocated for a VPC.

Inheritance
object
AllocateIpv6CidrRequest
Implements
IAllocateIpv6CidrRequest
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.EC2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class AllocateIpv6CidrRequest : IAllocateIpv6CidrRequest
Syntax (vb)
Public Class AllocateIpv6CidrRequest 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()

Request for subnet IPv6 CIDRs to be allocated for a VPC.

Properties

AllocatedSubnets

List of subnets allocated with IPv4 CIDRs.

Ipv6Cidrs

The IPv6 CIDRs to be allocated to the subnets.

Constructors

AllocateIpv6CidrRequest()

Request for subnet IPv6 CIDRs to be allocated for a VPC.

public AllocateIpv6CidrRequest()
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" }
            };

Properties

AllocatedSubnets

List of subnets allocated with IPv4 CIDRs.

public IAllocatedSubnet[] AllocatedSubnets { get; set; }
Property Value

IAllocatedSubnet[]

Remarks

ExampleMetadata: fixture=_generated

Ipv6Cidrs

The IPv6 CIDRs to be allocated to the subnets.

public string[] Ipv6Cidrs { get; set; }
Property Value

string[]

Remarks

ExampleMetadata: fixture=_generated

Implements

IAllocateIpv6CidrRequest
Back to top Generated by DocFX