loas
Creates, updates, deletes, gets or lists a loas resource.
Overview
| Name | loas |
| Type | Resource |
| Id | aws.directconnect.loas |
Fields
The following fields are returned by SELECT queries:
- describe_loa
| Name | Datatype | Description |
|---|---|---|
loa_content | string (byte) | The binary contents of the LOA-CFA document. |
loa_content_type | string | The 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:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
describe_loa | select | region | 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. |
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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- describe_loa
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
;