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:
ec2: An Amazon Elastic Compute Cloud (Amazon EC2) instance connects to the environment.
ssh: Your own server connects to the environment.
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; }