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

Connection

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

Information about an Direct Connect connection.

interface Connection {
awsDevice?: string | null;
awsDeviceV2?: string | null;
awsLogicalDeviceId?: string | null;
bandwidth?: string | null;
connectionId?: string | null;
connectionName?: string | null;
connectionState?: ConnectionState | null;
encryptionMode?: string | null;
hasLogicalRedundancy?: HasLogicalRedundancy | null;
jumboFrameCapable?: boolean | null;
lagId?: string | null;
loaIssueTime?: Date | number | null;
location?: string | null;
macSecCapable?: boolean | null;
macSecKeys?: MacSecKey[] | null;
ownerAccount?: string | null;
partnerName?: string | null;
portEncryptionStatus?: string | null;
providerName?: string | null;
region?: string | null;
tags?: Tag[] | null;
vlan?: number | 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.

§
connectionId?: string | null
[src]

The ID of the connection.

§
connectionName?: string | null
[src]

The name of the connection.

§
connectionState?: ConnectionState | null
[src]

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

  • ordering: The initial state of a hosted connection provisioned on an interconnect. The connection stays in the ordering state until the owner of the hosted connection confirms or declines the connection order.
  • requested: The initial state of a standard connection. The connection stays in the requested state until the Letter of Authorization (LOA) is sent to the customer.
  • pending: The connection has been approved and is being initialized.
  • available: The network link is up and the connection is ready for use.
  • down: The network link is down.
  • deleting: The connection is being deleted.
  • deleted: The connection has been deleted.
  • rejected: A hosted connection in the ordering state enters the rejected state if it is deleted by the customer.
  • unknown: The state of the connection is not available.
§
encryptionMode?: string | null
[src]

The MAC Security (MACsec) connection encryption mode.

The valid values are no_encrypt, should_encrypt, and must_encrypt.

§
hasLogicalRedundancy?: HasLogicalRedundancy | null
[src]

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

§
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.

§
macSecCapable?: boolean | null
[src]

Indicates whether the connection supports MAC Security (MACsec).

§
macSecKeys?: MacSecKey[] | null
[src]

The MAC Security (MACsec) security keys associated with the connection.

§
ownerAccount?: string | null
[src]

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

§
partnerName?: string | null
[src]

The name of the Direct Connect service provider associated with the connection.

§
portEncryptionStatus?: string | null
[src]

The MAC Security (MACsec) port link status of the connection.

The valid values are Encryption Up, which means that there is an active Connection Key Name, or Encryption Down.

§
providerName?: string | null
[src]

The name of the service provider associated with the connection.

§
region?: string | null
[src]

The Amazon Web Services Region where the connection is located.

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

The tags associated with the connection.

§
vlan?: number | null
[src]

The ID of the VLAN.