interface CfnLocalGatewayRouteTableMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.EC2.CfnLocalGatewayRouteTableMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsec2#CfnLocalGatewayRouteTableMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.ec2.CfnLocalGatewayRouteTableMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_ec2.CfnLocalGatewayRouteTableMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_ec2 » CfnLocalGatewayRouteTableMixinProps |
Properties for CfnLocalGatewayRouteTablePropsMixin.
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/cfn-property-mixins';
const cfnLocalGatewayRouteTableMixinProps: ec2.CfnLocalGatewayRouteTableMixinProps = {
localGatewayId: 'localGatewayId',
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
(optional)
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.

.NET
Go
Java
Python
TypeScript