interface CfnLocalGatewayRouteTableProps
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.EC2.CfnLocalGatewayRouteTableProps |
Java | software.amazon.awscdk.services.ec2.CfnLocalGatewayRouteTableProps |
Python | aws_cdk.aws_ec2.CfnLocalGatewayRouteTableProps |
TypeScript | @aws-cdk/aws-ec2 » CfnLocalGatewayRouteTableProps |
Properties for defining a CfnLocalGatewayRouteTable
.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as ec2 from '@aws-cdk/aws-ec2';
const cfnLocalGatewayRouteTableProps: ec2.CfnLocalGatewayRouteTableProps = {
localGatewayId: 'localGatewayId',
// the properties below are optional
mode: 'mode',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
Name | Type | Description |
---|---|---|
local | string | The ID of the local gateway. |
mode? | string | The mode of the local gateway route table. |
tags? | Cfn [] | The tags assigned to the local gateway route table. |
localGatewayId
Type:
string
The ID of the local gateway.
mode?
Type:
string
(optional)
The mode of the local gateway route table.
tags?
Type:
Cfn
[]
(optional)
The tags assigned to the local gateway route table.