LinuxCommandLibrary

aws-cloud9

Manage Cloud9 - a collection of tools to code, build, run, test, debug, and release software in the cloud.

TLDR

Get a list of Cloud9 development environment identifiers

$ aws cloud9 list-environments
copy


Create a Cloud9 development environment
$ aws cloud9 create-environment-ec2 --name [name] --instance-type [instance_type]
copy


Display information about Cloud9 development environments
$ aws cloud9 describe-environments --environment-ids [environment_ids]
copy


Add an environment member to a Cloud9 development environment
$ aws cloud9 create-environment-membership --environment-id [environment_id] --user-arn [user_arn] --permissions [permissions]
copy


Display status information for a Cloud9 development environment
$ aws cloud9 describe-environment-status --environment-id [environment_id]
copy


Delete a Cloud9 environment
$ aws cloud9 delete-environment --environment-id [environment_id]
copy


Delete an environment member from a development environment
$ aws cloud9 delete-environment-membership --environment-id [environment_id] --user-arn [user_arn]
copy

Copied to clipboard