AWS SDK Version 3 for .NET
API Reference

AWS services or capabilities described in AWS Documentation may vary by region/location. Click Getting Started with Amazon AWS to see specific differences applicable to the China (Beijing) Region.

This is the response object from the CreateEnvironmentEC2 operation.

Inheritance Hierarchy

System.Object
  Amazon.Runtime.AmazonWebServiceResponse
    Amazon.Cloud9.Model.CreateEnvironmentEC2Response

Namespace: Amazon.Cloud9.Model
Assembly: AWSSDK.Cloud9.dll
Version: 3.x.y.z

Syntax

C#
public class CreateEnvironmentEC2Response : AmazonWebServiceResponse

The CreateEnvironmentEC2Response type exposes the following members

Constructors

Properties

NameTypeDescription
Public Property ContentLength System.Int64 Inherited from Amazon.Runtime.AmazonWebServiceResponse.
Public Property EnvironmentId System.String

Gets and sets the property EnvironmentId.

The ID of the environment that was created.

Public Property HttpStatusCode System.Net.HttpStatusCode Inherited from Amazon.Runtime.AmazonWebServiceResponse.
Public Property ResponseMetadata Amazon.Runtime.ResponseMetadata Inherited from Amazon.Runtime.AmazonWebServiceResponse.

Examples

CreateEnvironmentEC2


var client = new AmazonCloud9Client();
var response = client.CreateEnvironmentEC2(new CreateEnvironmentEC2Request 
{
    Name = "my-demo-environment",
    AutomaticStopTimeMinutes = 60,
    Description = "This is my demonstration environment.",
    ImageId = "amazonlinux-2023-x86_64",
    InstanceType = "t2.micro",
    OwnerArn = "arn:aws:iam::123456789012:user/MyDemoUser",
    SubnetId = "subnet-6300cd1b"
});

string environmentId = response.EnvironmentId;

            

Version Information

.NET Core App:
Supported in: 3.1

.NET Standard:
Supported in: 2.0

.NET Framework:
Supported in: 4.5, 4.0, 3.5