interface CfnLocalGatewayRouteTableVPCAssociationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.EC2.CfnLocalGatewayRouteTableVPCAssociationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsec2#CfnLocalGatewayRouteTableVPCAssociationMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.ec2.CfnLocalGatewayRouteTableVPCAssociationMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_ec2.CfnLocalGatewayRouteTableVPCAssociationMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_ec2 » CfnLocalGatewayRouteTableVPCAssociationMixinProps |
Properties for CfnLocalGatewayRouteTableVPCAssociationPropsMixin.
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 cfnLocalGatewayRouteTableVPCAssociationMixinProps: ec2.CfnLocalGatewayRouteTableVPCAssociationMixinProps = {
localGatewayRouteTableId: 'localGatewayRouteTableId',
tags: [{
key: 'key',
value: 'value',
}],
vpcId: 'vpcId',
};
Properties
| Name | Type | Description |
|---|---|---|
| local | string | The ID of the local gateway route table. |
| tags? | Cfn[] | The tags assigned to the association. |
| vpc | string | IVPCRef | The ID of the VPC. |
localGatewayRouteTableId?
Type:
string
(optional)
The ID of the local gateway route table.
tags?
Type:
Cfn[]
(optional)
The tags assigned to the association.
vpcId?
Type:
string | IVPCRef
(optional)
The ID of the VPC.

.NET
Go
Java
Python
TypeScript