import * as __aws_sdk_types from "@aws-sdk/types"; /** * DescribeEnvironmentStatusOutput shape */ export interface DescribeEnvironmentStatusOutput extends __aws_sdk_types.MetadataBearer { /** *

The status of the environment. Available values include:

*/ status?: "error" | "creating" | "connecting" | "ready" | "stopping" | "stopped" | "deleting" | string; /** *

Any informational message about the status of the environment.

*/ message?: string; /** * Metadata about the response received, including the HTTP status code, HTTP headers, and any request identifiers recognized by the SDK. */ $metadata: __aws_sdk_types.ResponseMetadata; }