/** *
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.
CREATED: The environment was successfully created.
DELETE_FAILED: The environment failed to delete.
DELETING: The environment is in the process of being deleted.
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;