Skip to main content

environments

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

Overview

Nameenvironments
TypeResource
Idaws.interconnect.environments

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
activation_page_urlstringAn HTTPS URL on the remote partner portal where the Activation Key should be brought to complete the creation process.
bandwidthsobjectThe sets of bandwidths that are available and supported on this environment.
environment_idstringThe identifier of this Environment
locationstringThe provider specific location on the remote side of this Connection.
providerobjectThe provider on the remote side of this Connection.
remote_identifier_typestringThe type of identifying information that should be supplied to the remoteAccount parameter of a CreateConnection call for this specific Environment. (account, email)
statestringThe state of the Environment. Possible values: available: The environment is available and new Connection objects can be requested. limited: The environment is available, but overall capacity is limited. The set of available bandwidths unavailable: The environment is currently unavailable. (available, limited, unavailable)
type_stringThe specific product type of Connection objects provided by this Environment.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_environmentselectregionDescribes a specific Environment
list_environmentsselectregionLists all of the environments that can produce connections that will land in the called AWS region.

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

Describes a specific Environment

SELECT
activation_page_url,
bandwidths,
environment_id,
location,
provider,
remote_identifier_type,
state,
type_
FROM aws.interconnect.environments
WHERE region = '{{ region }}' -- required
;