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

BGPPeer

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

Information about a BGP peer.

interface BGPPeer {
addressFamily?: AddressFamily | null;
amazonAddress?: string | null;
asn?: number | null;
authKey?: string | null;
awsDeviceV2?: string | null;
awsLogicalDeviceId?: string | null;
bgpPeerId?: string | null;
bgpPeerState?: BGPPeerState | null;
bgpStatus?: BGPStatus | null;
customerAddress?: string | null;
}

§Properties

§
addressFamily?: AddressFamily | null
[src]

The address family for the BGP peer.

§
amazonAddress?: string | null
[src]

The IP address assigned to the Amazon interface.

§
asn?: number | null
[src]

The autonomous system (AS) number for Border Gateway Protocol (BGP) configuration.

§
authKey?: string | null
[src]

The authentication key for BGP configuration. This string has a minimum length of 6 characters and and a maximun lenth of 80 characters.

§
awsDeviceV2?: string | null
[src]

The Direct Connect endpoint that terminates the BGP peer.

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

§
bgpPeerId?: string | null
[src]

The ID of the BGP peer.

§
bgpPeerState?: BGPPeerState | null
[src]

The state of the BGP peer. The following are the possible values:

  • verifying: The BGP peering addresses or ASN require validation before the BGP peer can be created. This state applies only to public virtual interfaces.
  • pending: The BGP peer is created, and remains in this state until it is ready to be established.
  • available: The BGP peer is ready to be established.
  • deleting: The BGP peer is being deleted.
  • deleted: The BGP peer is deleted and cannot be established.
§
bgpStatus?: BGPStatus | null
[src]

The status of the BGP peer. The following are the possible values:

  • up: The BGP peer is established. This state does not indicate the state of the routing function. Ensure that you are receiving routes over the BGP session.
  • down: The BGP peer is down.
  • unknown: The BGP peer status is not available.
§
customerAddress?: string | null
[src]

The IP address assigned to the customer interface.