Show / Hide Table of Contents

Class CfnRouteTableProps

Properties for defining a CfnRouteTable.

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-routetable.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 cfnRouteTableProps = new CfnRouteTableProps {
                 VpcId = "vpcId",

                 // the properties below are optional
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Synopsis

Constructors

CfnRouteTableProps()

Properties for defining a CfnRouteTable.

Properties

Tags

Any tags assigned to the route table.

VpcId

The ID of the VPC.

Constructors

CfnRouteTableProps()

Properties for defining a CfnRouteTable.

public CfnRouteTableProps()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-routetable.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 cfnRouteTableProps = new CfnRouteTableProps {
                 VpcId = "vpcId",

                 // the properties below are optional
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Properties

Tags

Any tags assigned to the route table.

public ICfnTag[]? Tags { get; set; }
Property Value

ICfnTag[]

Remarks

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

VpcId

The ID of the VPC.

public object VpcId { get; set; }
Property Value

object

Remarks

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

Type union: either string or IVPCRef

Implements

ICfnRouteTableProps
Back to top Generated by DocFX