Skip to main content

connection_proposals

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

Overview

Nameconnection_proposals
TypeResource
Idaws.interconnect.connection_proposals

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
bandwidthstringThe bandwidth of the proposed Connection. (pattern: <code>\d+[MG]bps</code>)
environment_idstringThe identifier of the Environment upon which the Connection would be placed if this proposal were accepted.
locationstringThe partner specific location distinguisher of the specific Environment of the proposal.
providerobjectThe partner provider of the specific Environment of the proposal.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
describe_connection_proposalselectregionDescribes the details of a connection proposal generated at a partner's portal.

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 the details of a connection proposal generated at a partner's portal.

SELECT
bandwidth,
environment_id,
location,
provider
FROM aws.interconnect.connection_proposals
WHERE region = '{{ region }}' -- required
;