Show / Hide Table of Contents

Class CfnSubnetCidrBlockProps

Properties for defining a CfnSubnetCidrBlock.

Inheritance
object
CfnSubnetCidrBlockProps
Implements
ICfnSubnetCidrBlockProps
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 CfnSubnetCidrBlockProps : ICfnSubnetCidrBlockProps
Syntax (vb)
Public Class CfnSubnetCidrBlockProps Implements ICfnSubnetCidrBlockProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html

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 cfnSubnetCidrBlockProps = new CfnSubnetCidrBlockProps {
                 SubnetId = "subnetId",

                 // the properties below are optional
                 Ipv6CidrBlock = "ipv6CidrBlock",
                 Ipv6IpamPoolId = "ipv6IpamPoolId",
                 Ipv6NetmaskLength = 123
             };

Synopsis

Constructors

CfnSubnetCidrBlockProps()

Properties for defining a CfnSubnetCidrBlock.

Properties

Ipv6CidrBlock

The IPv6 network range for the subnet, in CIDR notation.

Ipv6IpamPoolId

An IPv6 IPAM pool ID for the subnet.

Ipv6NetmaskLength

An IPv6 netmask length for the subnet.

SubnetId

The ID of the subnet.

Constructors

CfnSubnetCidrBlockProps()

Properties for defining a CfnSubnetCidrBlock.

public CfnSubnetCidrBlockProps()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html

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 cfnSubnetCidrBlockProps = new CfnSubnetCidrBlockProps {
                 SubnetId = "subnetId",

                 // the properties below are optional
                 Ipv6CidrBlock = "ipv6CidrBlock",
                 Ipv6IpamPoolId = "ipv6IpamPoolId",
                 Ipv6NetmaskLength = 123
             };

Properties

Ipv6CidrBlock

The IPv6 network range for the subnet, in CIDR notation.

public string? Ipv6CidrBlock { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html#cfn-ec2-subnetcidrblock-ipv6cidrblock

Ipv6IpamPoolId

An IPv6 IPAM pool ID for the subnet.

public string? Ipv6IpamPoolId { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html#cfn-ec2-subnetcidrblock-ipv6ipampoolid

Ipv6NetmaskLength

An IPv6 netmask length for the subnet.

public double? Ipv6NetmaskLength { get; set; }
Property Value

double?

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html#cfn-ec2-subnetcidrblock-ipv6netmasklength

SubnetId

The ID of the subnet.

public object SubnetId { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html#cfn-ec2-subnetcidrblock-subnetid

Type union: either string or ISubnetRef

Implements

ICfnSubnetCidrBlockProps
Back to top Generated by DocFX