System Grab Bag

View all TLDR pages from common (or from all pages)

aws cloud9

Manage Cloud9 - a collection of tools to code, build, run, test, debug, and release software in the cloud. More information: https://awscli.amazonaws.com/v2/documentation/api/latest/reference/cloud9/index.html.
  • Get a list of Cloud9 development environment identifiers:
    aws cloud9 list-environments
  • Create a Cloud9 development environment:
    aws cloud9 create-environment-ec2 --name {{name}} --instance-type {{instance_type}}
  • Display information about Cloud9 development environments:
    aws cloud9 describe-environments --environment-ids {{environment_ids}}
  • Add an environment member to a Cloud9 development environment:
    aws cloud9 create-environment-membership --environment-id {{environment_id}} --user-arn {{user_arn}} --permissions {{permissions}}
  • Display status information for a Cloud9 development environment:
    aws cloud9 describe-environment-status --environment-id {{environment_id}}
  • Delete a Cloud9 environment:
    aws cloud9 delete-environment --environment-id {{environment_id}}
  • Delete an environment member from a development environment:
    aws cloud9 delete-environment-membership --environment-id {{environment_id}} --user-arn {{user_arn}}

License and Disclaimer

The content on this page is copyright © 2014—present the tldr-pages team and contributors.
This page is used with permission under Creative Commons Attribution 4.0 International License.

While we do attempt to make sure content is accurate, there isn't a warranty of any kind.