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

DirectConnectGatewayAttachment

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

Information about an attachment between a Direct Connect gateway and a virtual interface.

interface DirectConnectGatewayAttachment {
attachmentState?: DirectConnectGatewayAttachmentState | null;
attachmentType?: DirectConnectGatewayAttachmentType | null;
directConnectGatewayId?: string | null;
stateChangeError?: string | null;
virtualInterfaceId?: string | null;
virtualInterfaceOwnerAccount?: string | null;
virtualInterfaceRegion?: string | null;
}

§Properties

§

The state of the attachment. The following are the possible values:

  • attaching: The initial state after a virtual interface is created using the Direct Connect gateway.
  • attached: The Direct Connect gateway and virtual interface are attached and ready to pass traffic.
  • detaching: The initial state after calling "DeleteVirtualInterface".
  • detached: The virtual interface is detached from the Direct Connect gateway. Traffic flow between the Direct Connect gateway and virtual interface is stopped.
§

The type of attachment.

§
directConnectGatewayId?: string | null
[src]

The ID of the Direct Connect gateway.

§
stateChangeError?: string | null
[src]

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

§
virtualInterfaceId?: string | null
[src]

The ID of the virtual interface.

§
virtualInterfaceOwnerAccount?: string | null
[src]

The ID of the Amazon Web Services account that owns the virtual interface.

§
virtualInterfaceRegion?: string | null
[src]

The Amazon Web Services Region where the virtual interface is located.