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

Interconnect

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

Information about an interconnect.

interface Interconnect {
awsDevice?: string | null;
awsDeviceV2?: string | null;
awsLogicalDeviceId?: string | null;
bandwidth?: string | null;
hasLogicalRedundancy?: HasLogicalRedundancy | null;
interconnectId?: string | null;
interconnectName?: string | null;
interconnectState?: InterconnectState | null;
jumboFrameCapable?: boolean | null;
lagId?: string | null;
loaIssueTime?: Date | number | null;
location?: string | null;
providerName?: string | null;
region?: string | null;
tags?: Tag[] | null;
}

§Properties

§
awsDevice?: string | null
[src]

The Direct Connect endpoint on which the physical connection terminates.

§
awsDeviceV2?: string | null
[src]

The Direct Connect endpoint that terminates the physical connection.

§
awsLogicalDeviceId?: string | null
[src]

The Direct Connect endpoint that terminates the logical connection. This device might be different than the device that terminates the physical connection.

§
bandwidth?: string | null
[src]

The bandwidth of the connection.

§
hasLogicalRedundancy?: HasLogicalRedundancy | null
[src]

Indicates whether the interconnect supports a secondary BGP in the same address family (IPv4/IPv6).

§
interconnectId?: string | null
[src]

The ID of the interconnect.

§
interconnectName?: string | null
[src]

The name of the interconnect.

§
interconnectState?: InterconnectState | null
[src]

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

  • requested: The initial state of an interconnect. The interconnect stays in the requested state until the Letter of Authorization (LOA) is sent to the customer.
  • pending: The interconnect is approved, and is being initialized.
  • available: The network link is up, and the interconnect is ready for use.
  • down: The network link is down.
  • deleting: The interconnect is being deleted.
  • deleted: The interconnect is deleted.
  • unknown: The state of the interconnect is not available.
§
jumboFrameCapable?: boolean | null
[src]

Indicates whether jumbo frames (9001 MTU) are supported.

§
lagId?: string | null
[src]

The ID of the LAG.

§
loaIssueTime?: Date | number | null
[src]

The time of the most recent call to "DescribeLoa" for this connection.

§
location?: string | null
[src]

The location of the connection.

§
providerName?: string | null
[src]

The name of the service provider associated with the interconnect.

§
region?: string | null
[src]

The Amazon Web Services Region where the connection is located.

§
tags?: Tag[] | null
[src]

The tags associated with the interconnect.