Skip to content

Describe Environment Status

cloud9_describe_environment_status R Documentation

Gets status information for an Cloud9 development environment

Description

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"

Usage

cloud9_describe_environment_status(environmentId)

Arguments

environmentId

[required] The ID of the environment to get status information about.

Value

A list with the following syntax:

list(
  status = "error"|"creating"|"connecting"|"ready"|"stopping"|"stopped"|"deleting",
  message = "string"
)

Request syntax

svc$describe_environment_status(
  environmentId = "string"
)

Examples

## Not run: 
# 
svc$describe_environment_status(
  environmentId = "8d9967e2f0624182b74e7690ad69ebEX"
)

## End(Not run)