interface CfnLocalGatewayRouteTableVirtualInterfaceGroupAssociationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.EC2.Mixins.CfnLocalGatewayRouteTableVirtualInterfaceGroupAssociationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsec2/mixins#CfnLocalGatewayRouteTableVirtualInterfaceGroupAssociationMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.ec2.mixins.CfnLocalGatewayRouteTableVirtualInterfaceGroupAssociationMixinProps |
Python | aws_cdk.mixins_preview.aws_ec2.mixins.CfnLocalGatewayRouteTableVirtualInterfaceGroupAssociationMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_ec2 » mixins » 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 { mixins as ec2_mixins } from '@aws-cdk/mixins-preview/aws-ec2';
const cfnLocalGatewayRouteTableVirtualInterfaceGroupAssociationMixinProps: ec2_mixins.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