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

DirectConnectGateway

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

Information about a Direct Connect gateway, which enables you to connect virtual interfaces and virtual private gateway or transit gateways.

interface DirectConnectGateway {
amazonSideAsn?: number | null;
directConnectGatewayId?: string | null;
directConnectGatewayName?: string | null;
directConnectGatewayState?: DirectConnectGatewayState | null;
ownerAccount?: string | null;
stateChangeError?: string | null;
}

§Properties

§
amazonSideAsn?: number | null
[src]

The autonomous system number (ASN) for the Amazon side of the connection.

§
directConnectGatewayId?: string | null
[src]

The ID of the Direct Connect gateway.

§
directConnectGatewayName?: string | null
[src]

The name of the Direct Connect gateway.

§
directConnectGatewayState?: DirectConnectGatewayState | null
[src]

The state of the Direct Connect gateway. The following are the possible values:

  • pending: The initial state after calling "CreateDirectConnectGateway".
  • available: The Direct Connect gateway is ready for use.
  • deleting: The initial state after calling "DeleteDirectConnectGateway".
  • deleted: The Direct Connect gateway is deleted and cannot pass traffic.
§
ownerAccount?: string | null
[src]

The ID of the Amazon Web Services account that owns the Direct Connect gateway.

§
stateChangeError?: string | null
[src]

The error message if the state of an object failed to advance.