interface TransitGatewayRouteTableProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ec2.Alpha.TransitGatewayRouteTableProps |
Go | github.com/aws/aws-cdk-go/awsec2alpha/v2#TransitGatewayRouteTableProps |
Java | software.amazon.awscdk.services.ec2.alpha.TransitGatewayRouteTableProps |
Python | aws_cdk.aws_ec2_alpha.TransitGatewayRouteTableProps |
TypeScript (source) | @aws-cdk/aws-ec2-alpha » TransitGatewayRouteTableProps |
Common properties for creating a Transit Gateway Route Table resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as ec2_alpha from '@aws-cdk/aws-ec2-alpha';
declare const transitGateway: ec2_alpha.TransitGateway;
const transitGatewayRouteTableProps: ec2_alpha.TransitGatewayRouteTableProps = {
transitGateway: transitGateway,
// the properties below are optional
transitGatewayRouteTableName: 'transitGatewayRouteTableName',
};
Properties
| Name | Type | Description |
|---|---|---|
| transit | ITransit | The Transit Gateway that this route table belongs to. |
| transit | string | Physical name of this Transit Gateway Route Table. |
transitGateway
Type:
ITransit
The Transit Gateway that this route table belongs to.
transitGatewayRouteTableName?
Type:
string
(optional, default: Assigned by CloudFormation.)
Physical name of this Transit Gateway Route Table.

.NET
Go
Java
Python
TypeScript (