attach_points
Creates, updates, deletes, gets or lists an attach_points resource.
Overview
| Name | attach_points |
| Type | Resource |
| Id | aws.interconnect.attach_points |
Fields
The following fields are returned by SELECT queries:
- list_attach_points
| Name | Datatype | Description |
|---|---|---|
name | string | The descriptive name of the identifier attach point. |
identifier | string | The identifier for the specific type of the AttachPoint. |
type_ | string | The type of this AttachPoint, which will dictate the syntax of the identifier. Current types include: ARN DirectConnect Gateway (DirectConnectGateway) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_attach_points | select | region | Lists all Attach Points the caller has access to that are valid for the specified Environment. |
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
- list_attach_points
Lists all Attach Points the caller has access to that are valid for the specified Environment.
SELECT
name,
identifier,
type_
FROM aws.interconnect.attach_points
WHERE region = '{{ region }}' -- required
;