snippetbashTip
aws cloud9 — Manage Cloud9 - a collection of tools to code, build, run, test, debug, and release software in the
Viewed 0 times
commandcollectionaws cloud9climanagecodecloud9tools
Problem
How to use the
aws cloud9 command: Manage Cloud9 - a collection of tools to code, build, run, test, debug, and release software in the cloud. More information: <https://docs.aws.amazon.com/cli/latest/reference/cloud9/>.Solution
aws cloud9 — Manage Cloud9 - a collection of tools to code, build, run, test, debug, and release software in the cloud. More information: <https://docs.aws.amazon.com/cli/latest/reference/cloud9/>.List all Cloud9 development environment identifiers:
aws cloud9 list-environmentsCreate 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}}Code Snippets
List all Cloud9 development environment identifiers
aws cloud9 list-environmentsCreate 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}}Context
tldr-pages: common/aws cloud9
Revisions (0)
No revisions yet.