aws-cloud9: add page (#10627)

Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com>
pull/23/head
the0001 2023-08-25 11:50:48 -05:00 committed by GitHub
parent 6afd4dbb5f
commit 61848c5096
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 32 additions and 0 deletions

View File

@ -0,0 +1,32 @@
# 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}}`