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

DirectConnectGatewayAssociation

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

Information about an association between a Direct Connect gateway and a virtual private gateway or transit gateway.

interface DirectConnectGatewayAssociation {
allowedPrefixesToDirectConnectGateway?: RouteFilterPrefix[] | null;
associatedGateway?: AssociatedGateway | null;
associationId?: string | null;
associationState?: DirectConnectGatewayAssociationState | null;
directConnectGatewayId?: string | null;
directConnectGatewayOwnerAccount?: string | null;
stateChangeError?: string | null;
virtualGatewayId?: string | null;
virtualGatewayOwnerAccount?: string | null;
virtualGatewayRegion?: string | null;
}

§Properties

§
allowedPrefixesToDirectConnectGateway?: RouteFilterPrefix[] | null
[src]

The Amazon VPC prefixes to advertise to the Direct Connect gateway.

§
associatedGateway?: AssociatedGateway | null
[src]

Information about the associated gateway.

§
associationId?: string | null
[src]

The ID of the Direct Connect gateway association.

§

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

  • associating: The initial state after calling "CreateDirectConnectGatewayAssociation".
  • associated: The Direct Connect gateway and virtual private gateway or transit gateway are successfully associated and ready to pass traffic.
  • disassociating: The initial state after calling "DeleteDirectConnectGatewayAssociation".
  • disassociated: The virtual private gateway or transit gateway is disassociated from the Direct Connect gateway. Traffic flow between the Direct Connect gateway and virtual private gateway or transit gateway is stopped.
§
directConnectGatewayId?: string | null
[src]

The ID of the Direct Connect gateway.

§
directConnectGatewayOwnerAccount?: string | null
[src]

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

§
stateChangeError?: string | null
[src]

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

§
virtualGatewayId?: string | null
[src]

The ID of the virtual private gateway. Applies only to private virtual interfaces.

§
virtualGatewayOwnerAccount?: string | null
[src]

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

§
virtualGatewayRegion?: string | null
[src]

The Amazon Web Services Region where the virtual private gateway is located.