interface CfnTransitGatewayRouteTableMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.EC2.Mixins.CfnTransitGatewayRouteTableMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsec2/mixins#CfnTransitGatewayRouteTableMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.ec2.mixins.CfnTransitGatewayRouteTableMixinProps |
Python | aws_cdk.mixins_preview.aws_ec2.mixins.CfnTransitGatewayRouteTableMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_ec2 » mixins » CfnTransitGatewayRouteTableMixinProps |
Properties for CfnTransitGatewayRouteTablePropsMixin.
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 cfnTransitGatewayRouteTableMixinProps: ec2_mixins.CfnTransitGatewayRouteTableMixinProps = {
tags: [{
key: 'key',
value: 'value',
}],
transitGatewayId: 'transitGatewayId',
};
Properties
| Name | Type | Description |
|---|---|---|
| tags? | Cfn[] | Any tags assigned to the route table. |
| transit | string | The ID of the transit gateway. |
tags?
Type:
Cfn[]
(optional)
Any tags assigned to the route table.
transitGatewayId?
Type:
string
(optional)
The ID of the transit gateway.

.NET
Go
Java
Python
TypeScript