interface CfnTransitGatewayRouteTableProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.EC2.CfnTransitGatewayRouteTableProps |
Java | software.amazon.awscdk.services.ec2.CfnTransitGatewayRouteTableProps |
Python | aws_cdk.aws_ec2.CfnTransitGatewayRouteTableProps |
TypeScript | @aws-cdk/aws-ec2 » CfnTransitGatewayRouteTableProps |
Properties for defining a CfnTransitGatewayRouteTable.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as ec2 from '@aws-cdk/aws-ec2';
const cfnTransitGatewayRouteTableProps: ec2.CfnTransitGatewayRouteTableProps = {
transitGatewayId: 'transitGatewayId',
// the properties below are optional
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| transit | string | The ID of the transit gateway. |
| tags? | Cfn[] | Any tags assigned to the route table. |
transitGatewayId
Type:
string
The ID of the transit gateway.
tags?
Type:
Cfn[]
(optional)
Any tags assigned to the route table.

.NET
Java
Python
TypeScript