aws-cdk-lib.aws_ec2.CfnLocalGatewayRouteTableProps

interface CfnLocalGatewayRouteTableProps

LanguageType name
.NETAmazon.CDK.AWS.EC2.CfnLocalGatewayRouteTableProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsec2#CfnLocalGatewayRouteTableProps
Javasoftware.amazon.awscdk.services.ec2.CfnLocalGatewayRouteTableProps
Pythonaws_cdk.aws_ec2.CfnLocalGatewayRouteTableProps
TypeScript aws-cdk-lib » 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 { aws_ec2 as ec2 } from 'aws-cdk-lib';
const cfnLocalGatewayRouteTableProps: ec2.CfnLocalGatewayRouteTableProps = {
  localGatewayId: 'localGatewayId',

  // the properties below are optional
  mode: 'mode',
  tags: [{
    key: 'key',
    value: 'value',
  }],
};

Properties

NameTypeDescription
localGatewayIdstringThe ID of the local gateway.
mode?stringThe mode of the local gateway route table.
tags?CfnTag[]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: CfnTag[] (optional)

The tags assigned to the local gateway route table.