Namespace Amazon.CDK.AWS.Cloud9.Alpha
AWS Cloud9 Construct Library
---The APIs of higher level constructs in this module are experimental and under active development.
They are subject to non-backward compatible changes or removal in any future version. These are
not subject to the <a href="https://semver.org/">Semantic Versioning</a> model and breaking changes will be
announced in the release notes. This means that while you may use them, you may need to update
your source code when upgrading to a newer version of this package.
This module is part of the AWS Cloud Development Kit project.
AWS Cloud9 is a cloud-based integrated development environment (IDE) that lets you write, run, and debug your code with just a browser. It includes a code editor, debugger, and terminal. Cloud9 comes prepackaged with essential tools for popular programming languages, including JavaScript, Python, PHP, and more, so you don’t need to install files or configure your development machine to start new projects. Since your Cloud9 IDE is cloud-based, you can work on your projects from your office, home, or anywhere using an internet-connected machine. Cloud9 also provides a seamless experience for developing serverless applications enabling you to easily define resources, debug, and switch between local and remote execution of serverless applications. With Cloud9, you can quickly share your development environment with your team, enabling you to pair program and track each other's inputs in real time.
Creating EC2 Environment
EC2 Environments are defined with Ec2Environment
. To create an EC2 environment in the private subnet, specify
subnetSelection
with private subnetType
.
// create a cloud9 ec2 environment in a new VPC
var vpc = new Vpc(this, "VPC", new VpcProps { MaxAzs = 3 });
new Ec2Environment(this, "Cloud9Env", new Ec2EnvironmentProps { Vpc = vpc, ImageId = ImageId.AMAZON_LINUX_2 });
// or create the cloud9 environment in the default VPC with specific instanceType
var defaultVpc = Vpc.FromLookup(this, "DefaultVPC", new VpcLookupOptions { IsDefault = true });
new Ec2Environment(this, "Cloud9Env2", new Ec2EnvironmentProps {
Vpc = defaultVpc,
InstanceType = new InstanceType("t3.large"),
ImageId = ImageId.AMAZON_LINUX_2
});
// or specify in a different subnetSelection
var c9env = new Ec2Environment(this, "Cloud9Env3", new Ec2EnvironmentProps {
Vpc = vpc,
SubnetSelection = new SubnetSelection {
SubnetType = SubnetType.PRIVATE_WITH_EGRESS
},
ImageId = ImageId.AMAZON_LINUX_2
});
// print the Cloud9 IDE URL in the output
// print the Cloud9 IDE URL in the output
new CfnOutput(this, "URL", new CfnOutputProps { Value = c9env.IdeUrl });
Specifying EC2 AMI
Use imageId
to specify the EC2 AMI image to be used:
var defaultVpc = Vpc.FromLookup(this, "DefaultVPC", new VpcLookupOptions { IsDefault = true });
new Ec2Environment(this, "Cloud9Env2", new Ec2EnvironmentProps {
Vpc = defaultVpc,
InstanceType = new InstanceType("t3.large"),
ImageId = ImageId.UBUNTU_18_04
});
Cloning Repositories
Use clonedRepositories
to clone one or multiple AWS Codecommit repositories into the environment:
using Amazon.CDK.AWS.CodeCommit;
// create a new Cloud9 environment and clone the two repositories
Vpc vpc;
// create a codecommit repository to clone into the cloud9 environment
var repoNew = new Repository(this, "RepoNew", new RepositoryProps {
RepositoryName = "new-repo"
});
// import an existing codecommit repository to clone into the cloud9 environment
var repoExisting = Repository.FromRepositoryName(this, "RepoExisting", "existing-repo");
new Ec2Environment(this, "C9Env", new Ec2EnvironmentProps {
Vpc = vpc,
ClonedRepositories = new [] { CloneRepository.FromCodeCommit(repoNew, "/src/new-repo"), CloneRepository.FromCodeCommit(repoExisting, "/src/existing-repo") },
ImageId = ImageId.AMAZON_LINUX_2
});
Specifying Owners
Every Cloud9 Environment has an owner. An owner has full control over the environment, and can invite additional members to the environment for collaboration purposes. For more information, see Working with shared environments in AWS Cloud9).
By default, the owner will be the identity that creates the Environment, which is most likely your CloudFormation Execution Role when the Environment is created using CloudFormation. Provider a value for the owner
property to assign a different owner, either a specific IAM User or the AWS Account Root User.
Owner
is an IAM entity that owns a Cloud9 environment. Owner
has their own access permissions, and resources. You can specify an Owner
in an EC2 environment which could be of the following types:
The ARN of the owner must satisfy the following regular expression: ^arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):(iam|sts)::\d+:(root|(user/[\w+=/:,.@-]{1,64}|federated-user/[\w+=/:,.@-]{2,32}|assumed-role/[\w+=:,.@-]{1,64}/[\w+=,.@-]{1,64}))$
Note: Using the account root user is not recommended, see environment sharing best practices.
To specify the AWS Account Root User as the environment owner, use Owner.accountRoot()
Vpc vpc;
new Ec2Environment(this, "C9Env", new Ec2EnvironmentProps {
Vpc = vpc,
ImageId = ImageId.AMAZON_LINUX_2,
Owner = Owner.AccountRoot("111111111")
});
To specify a specific IAM User as the environment owner, use Owner.user()
. The user should have the AWSCloud9Administrator
managed policy
The user should have the AWSCloud9User
(preferred) or AWSCloud9Administrator
managed policy attached.
using Amazon.CDK.AWS.IAM;
Vpc vpc;
var user = new User(this, "user");
user.AddManagedPolicy(ManagedPolicy.FromAwsManagedPolicyName("AWSCloud9Administrator"));
new Ec2Environment(this, "C9Env", new Ec2EnvironmentProps {
Vpc = vpc,
ImageId = ImageId.AMAZON_LINUX_2,
Owner = Owner.User(user)
});
To specify a specific IAM Federated User as the environment owner, use Owner.federatedUser(accountId, userName)
.
The user should have the AWSCloud9User
(preferred) or AWSCloud9Administrator
managed policy attached.
using Amazon.CDK.AWS.IAM;
Vpc vpc;
new Ec2Environment(this, "C9Env", new Ec2EnvironmentProps {
Vpc = vpc,
ImageId = ImageId.AMAZON_LINUX_2,
Owner = Owner.FederatedUser(Stack.Of(this).Account, "Admin/johndoe")
});
To specify an IAM Assumed Role as the environment owner, use Owner.assumedRole(accountId: string, roleName: string)
.
The role should have the AWSCloud9User
(preferred) or AWSCloud9Administrator
managed policy attached.
using Amazon.CDK.AWS.IAM;
Vpc vpc;
new Ec2Environment(this, "C9Env", new Ec2EnvironmentProps {
Vpc = vpc,
ImageId = ImageId.AMAZON_LINUX_2,
Owner = Owner.AssumedRole(Stack.Of(this).Account, "Admin/johndoe-role")
});
Auto-Hibernation
A Cloud9 environment can automatically start and stop the associated EC2 instance to reduce costs.
Use automaticStop
to specify the number of minutes until the running instance is shut down after the environment was last used.
var defaultVpc = Vpc.FromLookup(this, "DefaultVPC", new VpcLookupOptions { IsDefault = true });
new Ec2Environment(this, "Cloud9Env2", new Ec2EnvironmentProps {
Vpc = defaultVpc,
ImageId = ImageId.AMAZON_LINUX_2,
AutomaticStop = Duration.Minutes(30)
});
Classes
CloneRepository | (experimental) The class for different repository providers. |
ConnectionType | (experimental) The connection type used for connecting to an Amazon EC2 environment. |
Ec2Environment | (experimental) A Cloud9 Environment with Amazon EC2. |
Ec2EnvironmentProps | (experimental) Properties for Ec2Environment. |
ImageId | (experimental) The image ID used for creating an Amazon EC2 environment. |
Owner | (experimental) An environment owner. |
Interfaces
IEc2Environment | (experimental) A Cloud9 Environment. |
IEc2EnvironmentProps | (experimental) Properties for Ec2Environment. |