Show / Hide Table of Contents

Namespace Pulumi.Aws.Cloud9

Classes

EnvironmentEC2

Provides a Cloud9 EC2 Development Environment.

Example Usage

using Pulumi;
using Aws = Pulumi.Aws;

class MyStack : Stack
{
public MyStack()
{
    var example = new Aws.Cloud9.EnvironmentEC2("example", new Aws.Cloud9.EnvironmentEC2Args
    {
        InstanceType = "t2.micro",
    });
}

}

EnvironmentEC2Args

EnvironmentEC2State

Back to top Copyright 2016-2020, Pulumi Corporation.