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

.NET
Go
Java
Python
TypeScript