environment_status
Creates, updates, deletes, gets or lists an environment_status resource.
Overview
| Name | environment_status |
| Type | Resource |
| Id | aws.cloud9.environment_status |
Fields
The following fields are returned by SELECT queries:
- describe_environment_status
| Name | Datatype | Description |
|---|---|---|
message | string | Any informational message about the status of the environment. |
status | string | The status of the environment. Available values include: connecting: The environment is connecting. creating: The environment is being created. deleting: The environment is being deleted. error: The environment is in an error state. ready: The environment is ready. stopped: The environment is stopped. stopping: The environment is stopping. (error, creating, connecting, ready, stopping, stopped, deleting) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
describe_environment_status | select | region | Gets status information for an Cloud9 development environment. Cloud9 is no longer available to new customers. Existing customers of Cloud9 can continue to use the service as normal. Learn more" |
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_environment_status
Gets status information for an Cloud9 development environment. Cloud9 is no longer available to new customers. Existing customers of Cloud9 can continue to use the service as normal. Learn more"
SELECT
message,
status
FROM aws.cloud9.environment_status
WHERE region = '{{ region }}' -- required
;