Skip to main content

loas

Creates, updates, deletes, gets or lists a loas resource.

Overview

Nameloas
TypeResource
Idaws.directconnect.loas

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
loa_contentstring (byte)The binary contents of the LOA-CFA document.
loa_content_typestringThe standard media type for the LOA-CFA document. The only supported value is application/pdf. (application/pdf)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
describe_loaselectregionGets 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.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

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.

SELECT
loa_content,
loa_content_type
FROM aws.directconnect.loas
WHERE region = '{{ region }}' -- required
;