Class SubnetIpamOptions
CIDR Allocated Subnets.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.EC2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class SubnetIpamOptions : ISubnetIpamOptions
Syntax (vb)
Public Class SubnetIpamOptions Implements ISubnetIpamOptions
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 subnetIpamOptions = new SubnetIpamOptions {
AllocatedSubnets = new [] { new AllocatedSubnet {
Cidr = "cidr",
// the properties below are optional
Ipv6Cidr = "ipv6Cidr"
} }
};
Synopsis
Constructors
| SubnetIpamOptions() | CIDR Allocated Subnets. |
Properties
| AllocatedSubnets | CIDR Allocations for Subnets. |
Constructors
SubnetIpamOptions()
CIDR Allocated Subnets.
public SubnetIpamOptions()
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 subnetIpamOptions = new SubnetIpamOptions {
AllocatedSubnets = new [] { new AllocatedSubnet {
Cidr = "cidr",
// the properties below are optional
Ipv6Cidr = "ipv6Cidr"
} }
};
Properties
AllocatedSubnets
CIDR Allocations for Subnets.
public IAllocatedSubnet[] AllocatedSubnets { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated