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 DescribeEnvironmentStatus operation.

Inheritance Hierarchy

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

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

Syntax

C#
public class DescribeEnvironmentStatusResponse : AmazonWebServiceResponse

The DescribeEnvironmentStatusResponse type exposes the following members

Constructors

Properties

NameTypeDescription
Public Property ContentLength System.Int64 Inherited from Amazon.Runtime.AmazonWebServiceResponse.
Public Property HttpStatusCode System.Net.HttpStatusCode Inherited from Amazon.Runtime.AmazonWebServiceResponse.
Public Property Message System.String

Gets and sets the property Message.

Any informational message about the status of the environment.

Public Property ResponseMetadata Amazon.Runtime.ResponseMetadata Inherited from Amazon.Runtime.AmazonWebServiceResponse.
Public Property Status Amazon.Cloud9.EnvironmentStatus

Gets and sets the property Status.

The status of the environment. Available values include:

  • connecting: The environment is connecting.

  • creating: The environment is being created.

  • deleting: The environment is being deleted.

  • error: The environment is in an error state.

  • ready: The environment is ready.

  • stopped: The environment is stopped.

  • stopping: The environment is stopping.

Examples

DescribeEnvironmentStatus


var client = new AmazonCloud9Client();
var response = client.DescribeEnvironmentStatus(new DescribeEnvironmentStatusRequest 
{
    EnvironmentId = "8d9967e2f0624182b74e7690ad69ebEX"
});

string message = response.Message;
string status = response.Status;

            

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