Show / Hide Table of Contents

Interface ICfnLocalGatewayRouteTableProps

Properties for defining a CfnLocalGatewayRouteTable.

Namespace: Amazon.CDK.AWS.EC2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ICfnLocalGatewayRouteTableProps
Syntax (vb)
Public Interface ICfnLocalGatewayRouteTableProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroutetable.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 cfnLocalGatewayRouteTableProps = new CfnLocalGatewayRouteTableProps {
                 LocalGatewayId = "localGatewayId",

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

Synopsis

Properties

LocalGatewayId

The ID of the local gateway.

Mode

The mode of the local gateway route table.

Tags

The tags assigned to the local gateway route table.

Properties

LocalGatewayId

The ID of the local gateway.

string LocalGatewayId { get; }
Property Value

string

Remarks

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

Mode

The mode of the local gateway route table.

string? Mode { get; }
Property Value

string

Remarks

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

Tags

The tags assigned to the local gateway route table.

ICfnTag[]? Tags { get; }
Property Value

ICfnTag[]

Remarks

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

Back to top Generated by DocFX