Class CfnRouteTableProps
Properties for defining a CfnRouteTable.
Implements
Inherited Members
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 |
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
VpcId
The ID of the VPC.
public object VpcId { get; set; }
Property Value
Remarks
Type union: either string or IVPCRef