Class CreateIpv6CidrBlocksRequest
Request for IPv6 CIDR block to be split up.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.EC2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CreateIpv6CidrBlocksRequest : ICreateIpv6CidrBlocksRequest
Syntax (vb)
Public Class CreateIpv6CidrBlocksRequest Implements 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
Constructors
| CreateIpv6CidrBlocksRequest() | Request for IPv6 CIDR block to be split up. |
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. |
Constructors
CreateIpv6CidrBlocksRequest()
Request for IPv6 CIDR block to be split up.
public CreateIpv6CidrBlocksRequest()
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"
};
Properties
Ipv6SelectedCidr
The IPv6 CIDR block string representation.
public string Ipv6SelectedCidr { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated
SizeMask
Size of the covered bits in the CIDR.
public string? SizeMask { get; set; }
Property Value
Remarks
Default: - 128 - 64 = /64 CIDR.
SubnetCount
The number of subnets to assign CIDRs to.
public double SubnetCount { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated