Skip to main content

environment_status

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

Overview

Nameenvironment_status
TypeResource
Idaws.cloud9.environment_status

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
messagestringAny informational message about the status of the environment.
statusstringThe 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:

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

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

SELECT examples

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
;