NetworkConfig / VpcConfig | VpcTemplatesConfig / RouteTableConfig

VPC route table configuration. Used to define a VPC route table.

Example

Subnet route table

- name: SubnetRouteTable
routes: []
tags: []

Example

Gateway route table

- name: GatewayRouteTable
gatewayAssociation: internetGateway
routes: []
tags: []

Hierarchy

  • RouteTableConfig

Implements

Constructors

Properties

Constructors

Properties

gatewayAssociation: undefined | "virtualPrivateGateway" | "internetGateway" = undefined

Designate a gateway to associate this route table with.

Remarks

Only define this property when creating a gateway route table. Leave undefined for subnet route tables.

name: "" = ''

A friendly name for the VPC route table.

routes: RouteTableEntryConfig[] = []

An array of VPC route table entry configuration objects.

See

RouteTableEntryConfig

tags: Tag[] = []

An array of tag objects for the VPC route table.

Generated using TypeDoc