Skip to main content

attach_points

Creates, updates, deletes, gets or lists an attach_points resource.

Overview

Nameattach_points
TypeResource
Idaws.interconnect.attach_points

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
namestringThe descriptive name of the identifier attach point.
identifierstringThe identifier for the specific type of the AttachPoint.
type_stringThe 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:

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

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

SELECT examples

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
;