Jump to Content

Class DescribeLoaCommandProtected

Gets the LOA-CFA for a connection, interconnect, or link aggregation group (LAG).

The Letter of Authorization - Connecting Facility Assignment (LOA-CFA) is a document that is used when establishing your cross connect to Amazon Web Services at the colocation facility. For more information, see Requesting Cross Connects at Direct Connect Locations in the Direct Connect User Guide.

Example

Use a bare-bones client and the command you need to make an API call.

import { DirectConnectClient, DescribeLoaCommand } from "@aws-sdk/client-direct-connect"; // ES Modules import
// const { DirectConnectClient, DescribeLoaCommand } = require("@aws-sdk/client-direct-connect"); // CommonJS import
const client = new DirectConnectClient(config);
const input = { // DescribeLoaRequest
connectionId: "STRING_VALUE", // required
providerName: "STRING_VALUE",
loaContentType: "application/pdf",
};
const command = new DescribeLoaCommand(input);
const response = await client.send(command);

Param

DescribeLoaCommandInput

Returns

DescribeLoaCommandOutput

See

Throws

DirectConnectClientException (client fault)

One or more parameters are not valid.

Throws

DirectConnectServerException (server fault)

A server-side error occurred.

Hierarchy

Constructors

Properties

middlewareStack: MiddlewareStack<DescribeLoaCommandInput, DescribeLoaCommandOutput>

Methods