/** *

Information about the current creation or deletion lifecycle state of an AWS Cloud9 development environment.

*/ export interface _EnvironmentLifecycle { /** *

The current creation or deletion lifecycle state of the environment.

*/ status?: "CREATED" | "DELETING" | "DELETE_FAILED" | string; /** *

Any informational message about the lifecycle state of the environment.

*/ reason?: string; /** *

If the environment failed to delete, the Amazon Resource Name (ARN) of the related AWS resource.

*/ failureResource?: string; } export declare type _UnmarshalledEnvironmentLifecycle = _EnvironmentLifecycle;