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

RouteTableAssociation

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

Describes an association between a route table and a subnet or gateway.

interface RouteTableAssociation {
AssociationState?: RouteTableAssociationState | null;
GatewayId?: string | null;
Main?: boolean | null;
RouteTableAssociationId?: string | null;
RouteTableId?: string | null;
SubnetId?: string | null;
}

§Properties

§
AssociationState?: RouteTableAssociationState | null
[src]

The state of the association.

§
GatewayId?: string | null
[src]

The ID of the internet gateway or virtual private gateway.

§
Main?: boolean | null
[src]

Indicates whether this is the main route table.

§
RouteTableAssociationId?: string | null
[src]

The ID of the association.

§
RouteTableId?: string | null
[src]

The ID of the route table.

§
SubnetId?: string | null
[src]

The ID of the subnet. A subnet ID is not returned for an implicit association.