aws-cdk-lib.aws_ec2.CfnLocalGatewayRouteTableVPCAssociationProps

interface CfnLocalGatewayRouteTableVPCAssociationProps

LanguageType name
.NETAmazon.CDK.AWS.EC2.CfnLocalGatewayRouteTableVPCAssociationProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsec2#CfnLocalGatewayRouteTableVPCAssociationProps
Javasoftware.amazon.awscdk.services.ec2.CfnLocalGatewayRouteTableVPCAssociationProps
Pythonaws_cdk.aws_ec2.CfnLocalGatewayRouteTableVPCAssociationProps
TypeScript aws-cdk-lib » aws_ec2 » CfnLocalGatewayRouteTableVPCAssociationProps

Properties for defining a CfnLocalGatewayRouteTableVPCAssociation.

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 cfnLocalGatewayRouteTableVPCAssociationProps: ec2.CfnLocalGatewayRouteTableVPCAssociationProps = {
  localGatewayRouteTableId: 'localGatewayRouteTableId',
  vpcId: 'vpcId',

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

Properties

NameTypeDescription
localGatewayRouteTableIdstringThe ID of the local gateway route table.
vpcIdstringThe ID of the VPC.
tags?CfnTag[]The tags assigned to the association.

localGatewayRouteTableId

Type: string

The ID of the local gateway route table.


vpcId

Type: string

The ID of the VPC.


tags?

Type: CfnTag[] (optional)

The tags assigned to the association.