connection_proposals
Creates, updates, deletes, gets or lists a connection_proposals resource.
Overview
| Name | connection_proposals |
| Type | Resource |
| Id | aws.interconnect.connection_proposals |
Fields
The following fields are returned by SELECT queries:
- describe_connection_proposal
| Name | Datatype | Description |
|---|---|---|
bandwidth | string | The bandwidth of the proposed Connection. (pattern: <code>\d+[MG]bps</code>) |
environment_id | string | The identifier of the Environment upon which the Connection would be placed if this proposal were accepted. |
location | string | The partner specific location distinguisher of the specific Environment of the proposal. |
provider | object | The partner provider of the specific Environment of the proposal. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
describe_connection_proposal | select | region | Describes 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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- describe_connection_proposal
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
;