Amazon Cloud9 · Schema

ListEnvironmentsResponse

Response for listing environments.

Cloud9IDEDevelopmentBrowser-Based

Properties

Name Type Description
nextToken string If there are more than 25 items in the list, only the first 25 are returned.
environmentIds array The list of environment identifiers.
View JSON Schema on GitHub

JSON Schema

cloud9-list-environments-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-cloud9/refs/heads/main/json-schema/cloud9-list-environments-response-schema.json",
  "title": "ListEnvironmentsResponse",
  "description": "Response for listing environments.",
  "type": "object",
  "properties": {
    "nextToken": {
      "type": "string",
      "description": "If there are more than 25 items in the list, only the first 25 are returned."
    },
    "environmentIds": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "The list of environment identifiers."
    }
  }
}