v1

latestOpenAPI 3.0.0Apache 2.0 License2026-07-14136955.8 KB

Gets information about Cloud9 development environments.

post/#X-Amz-Target=AWSCloud9WorkspaceManagementService.DescribeEnvironments

Headers

X-Amz-Target'AWSCloud9WorkspaceManagementService.DescribeEnvironments' required

Request body

environmentIdsEnvironmentId[] required

The IDs of individual environments to get information about.

Response

Success

Example response

{
  "environments": [
    {
      "name": "my-demo-environment",
      "type": "ec2",
      "arn": "arn:aws:cloud9:us-east-2:123456789012:environment:8d9967e2f0624182b74e7690ad69ebEX",
      "description": "This is my demonstration environment.",
      "id": "8d9967e2f0624182b74e7690ad69ebEX",
      "lifecycle": {
        "status": "CREATED"
      },
      "ownerArn": "arn:aws:iam::123456789012:user/MyDemoUser"
    },
    {
      "name": "another-demo-environment",
      "type": "ssh",
      "arn": "arn:aws:cloud9:us-east-2:123456789012:environment:349c86d4579e4e7298d500ff57a6b2EX",
      "description": "",
      "id": "349c86d4579e4e7298d500ff57a6b2EX",
      "lifecycle": {
        "status": "CREATED"
      },
      "ownerArn": "arn:aws:sts::123456789012:assumed-role/AnotherDemoUser/AnotherDemoUser"
    }
  ]
}