Show / Hide Table of Contents

Interface ICreateIpv6CidrBlocksRequest

Request for IPv6 CIDR block to be split up.

Namespace: Amazon.CDK.AWS.EC2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ICreateIpv6CidrBlocksRequest
Syntax (vb)
Public Interface ICreateIpv6CidrBlocksRequest
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 createIpv6CidrBlocksRequest = new CreateIpv6CidrBlocksRequest {
                Ipv6SelectedCidr = "ipv6SelectedCidr",
                SubnetCount = 123,

                // the properties below are optional
                SizeMask = "sizeMask"
            };

Synopsis

Properties

Ipv6SelectedCidr

The IPv6 CIDR block string representation.

SizeMask

Size of the covered bits in the CIDR.

SubnetCount

The number of subnets to assign CIDRs to.

Properties

Ipv6SelectedCidr

The IPv6 CIDR block string representation.

string Ipv6SelectedCidr { get; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

SizeMask

Size of the covered bits in the CIDR.

string? SizeMask { get; }
Property Value

string

Remarks

Default: - 128 - 64 = /64 CIDR.

SubnetCount

The number of subnets to assign CIDRs to.

double SubnetCount { get; }
Property Value

double

Remarks

ExampleMetadata: fixture=_generated

Back to top Generated by DocFX