interface Route {
    createdAt?: Date;
    description: string;
    destination: string;
    id: string;
    isReadOnly: boolean;
    nexthopPrivateNetworkId?: string;
    nexthopResourceId?: string;
    region: Region;
    tags: string[];
    updatedAt?: Date;
    vpcId: string;
}

Properties

createdAt?: Date

Date the Route was created.

description: string

Route description.

destination: string

Destination of the Route.

id: string

Route ID.

isReadOnly: boolean

Defines whether the route can be modified or deleted by the user.

nexthopPrivateNetworkId?: string

ID of the nexthop private network.

nexthopResourceId?: string

ID of the nexthop resource.

region: Region

Region of the Route.

tags: string[]

Tags of the Route.

updatedAt?: Date

Date the Route was last modified.

vpcId: string

VPC the Route belongs to.