← 返回命令列表

Linux command

aws-cloud9 命令

文本

复制后可按需替换文件名、目录或参数。

常用示例

Create a new Cloud9 EC2 environment

aws cloud9 create-environment-ec2 --name [my-env] --instance-type t2.micro

List all Cloud9 environments

aws cloud9 list-environments

Describe specific environments

aws cloud9 describe-environments --environment-ids [env-id-1] [env-id-2]

Get the status

aws cloud9 describe-environment-status --environment-id [env-id]

Add a member

aws cloud9 create-environment-membership --environment-id [env-id] --user-arn [arn:aws:iam::account:user/username] --permissions read-write

Delete an environment

aws cloud9 delete-environment --environment-id [env-id]

说明

aws cloud9 is the AWS CLI interface for AWS Cloud9, a cloud-based integrated development environment (IDE) for writing, running, and debugging code. Cloud9 provides a browser-based editor, debugger, and terminal, and comes pre-configured with essential tools for popular programming languages. Cloud9 environments run on EC2 instances and support collaborative development with real-time pair programming capabilities.

FAQ

What is the aws-cloud9 command used for?

aws cloud9 is the AWS CLI interface for AWS Cloud9, a cloud-based integrated development environment (IDE) for writing, running, and debugging code. Cloud9 provides a browser-based editor, debugger, and terminal, and comes pre-configured with essential tools for popular programming languages. Cloud9 environments run on EC2 instances and support collaborative development with real-time pair programming capabilities.

How do I run a basic aws-cloud9 example?

Run `aws cloud9 create-environment-ec2 --name [my-env] --instance-type t2.micro` in a terminal, then adjust file names, paths, flags, or remote targets for your system.

Where can I find more aws-cloud9 examples?

This page includes 6 examples for aws-cloud9, plus related commands for nearby Linux tasks.