NetworkConfig / TransitGatewayConfig / TransitGatewayRouteTableConfig

Transit Gateway route table configuration.

Use this configuration define route tables for your Transit Gateway. Route tables are used to configure routing behaviors for your Transit Gateway.

The following example creates a TGW route table called Network-Main-Shared with no static route entries:

- name: Network-Main-Shared
routes: []
interface ITransitGatewayRouteTableConfig {
    name: string;
    routes: ITransitGatewayRouteEntryConfig[];
    tags?: ITag[];
}

Properties

Properties

name: string

A friendly name for the Transit Gateway route table.

CAUTION: Changing this property after initial deployment will cause a route table recreation. Please be aware that any downstream dependencies may cause this property update to fail.

An array of Transit Gateway route entry configuration objects.

TransitGatewayRouteEntryConfig

tags?: ITag[]

(OPTIONAL) An array of tag objects for the Transit Gateway route table.