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

Route

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

Describes a route in a route table.

interface Route {
CarrierGatewayId?: string | null;
CoreNetworkArn?: string | null;
DestinationCidrBlock?: string | null;
DestinationIpv6CidrBlock?: string | null;
DestinationPrefixListId?: string | null;
EgressOnlyInternetGatewayId?: string | null;
GatewayId?: string | null;
InstanceId?: string | null;
InstanceOwnerId?: string | null;
LocalGatewayId?: string | null;
NatGatewayId?: string | null;
NetworkInterfaceId?: string | null;
Origin?: RouteOrigin | null;
State?: RouteState | null;
TransitGatewayId?: string | null;
VpcPeeringConnectionId?: string | null;
}

§Properties

§
CarrierGatewayId?: string | null
[src]

The ID of the carrier gateway.

§
CoreNetworkArn?: string | null
[src]

The Amazon Resource Name (ARN) of the core network.

§
DestinationCidrBlock?: string | null
[src]

The IPv4 CIDR block used for the destination match.

§
DestinationIpv6CidrBlock?: string | null
[src]

The IPv6 CIDR block used for the destination match.

§
DestinationPrefixListId?: string | null
[src]

The prefix of the Amazon Web Service.

§
EgressOnlyInternetGatewayId?: string | null
[src]

The ID of the egress-only internet gateway.

§
GatewayId?: string | null
[src]

The ID of a gateway attached to your VPC.

§
InstanceId?: string | null
[src]

The ID of a NAT instance in your VPC.

§
InstanceOwnerId?: string | null
[src]

The ID of Amazon Web Services account that owns the instance.

§
LocalGatewayId?: string | null
[src]

The ID of the local gateway.

§
NatGatewayId?: string | null
[src]

The ID of a NAT gateway.

§
NetworkInterfaceId?: string | null
[src]

The ID of the network interface.

§
Origin?: RouteOrigin | null
[src]

Describes how the route was created.

  • CreateRouteTable - The route was automatically created when the route table was created.
  • CreateRoute - The route was manually added to the route table.
  • EnableVgwRoutePropagation - The route was propagated by route propagation.
§
State?: RouteState | null
[src]

The state of the route. The blackhole state indicates that the route's target isn't available (for example, the specified gateway isn't attached to the VPC, or the specified NAT instance has been terminated).

§
TransitGatewayId?: string | null
[src]

The ID of a transit gateway.

§
VpcPeeringConnectionId?: string | null
[src]

The ID of a VPC peering connection.