Show / Hide Table of Contents

Class SubnetIpamOptions

CIDR Allocated Subnets.

Inheritance
object
SubnetIpamOptions
Implements
ISubnetIpamOptions
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 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

IAllocatedSubnet[]

Remarks

ExampleMetadata: fixture=_generated

Implements

ISubnetIpamOptions
Back to top Generated by DocFX