Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

EnvironmentLifecycle

import type { EnvironmentLifecycle } from "https://aws-api.deno.dev/v0.4/services/cloud9.ts?docs=full";

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

interface EnvironmentLifecycle {
failureResource?: string | null;
reason?: string | null;
}

§Properties

§
failureResource?: string | null
[src]

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

§
reason?: string | null
[src]

Any informational message about the lifecycle state of the environment.

§

The current creation or deletion lifecycle state of the environment.

  • CREATING: The environment is in the process of being created.
  • CREATED: The environment was successfully created.
  • CREATE_FAILED: The environment failed to be created.
  • DELETING: The environment is in the process of being deleted.
  • DELETE_FAILED: The environment failed to delete.