import { _EnvironmentLifecycle, _UnmarshalledEnvironmentLifecycle } from "./_EnvironmentLifecycle"; /** *

Information about an AWS Cloud9 development environment.

*/ export interface _Environment { /** *

The ID of the environment.

*/ id?: string; /** *

The name of the environment.

*/ name?: string; /** *

The description for the environment.

*/ description?: string; /** *

The type of environment. Valid values include the following:

*/ type?: "ssh" | "ec2" | string; /** *

The Amazon Resource Name (ARN) of the environment.

*/ arn?: string; /** *

The Amazon Resource Name (ARN) of the environment owner.

*/ ownerArn?: string; /** *

The state of the environment in its creation or deletion lifecycle.

*/ lifecycle?: _EnvironmentLifecycle; } export interface _UnmarshalledEnvironment extends _Environment { /** *

The state of the environment in its creation or deletion lifecycle.

*/ lifecycle?: _UnmarshalledEnvironmentLifecycle; }