Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

RouteTable

import type { RouteTable } from "https://aws-api.deno.dev/v0.3/services/ec2.ts?docs=full";

Describes a route table.

interface RouteTable {
Associations: RouteTableAssociation[];
OwnerId?: string | null;
PropagatingVgws: PropagatingVgw[];
Routes: Route[];
RouteTableId?: string | null;
Tags: Tag[];
VpcId?: string | null;
}

§Properties

§

The associations between the route table and one or more subnets or a gateway.

§
OwnerId?: string | null
[src]

The ID of the Amazon Web Services account that owns the route table.

§
PropagatingVgws: PropagatingVgw[]
[src]

Any virtual private gateway (VGW) propagating routes.

§
Routes: Route[]
[src]

The routes in the route table.

§
RouteTableId?: string | null
[src]

The ID of the route table.

§
Tags: Tag[]
[src]

Any tags assigned to the route table.

§
VpcId?: string | null
[src]

The ID of the VPC.