Module Values.EnvironmentLifecycleSource

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

Sourcetype nonrec t = {
  1. status : EnvironmentLifecycleStatus.t option;
    (*

    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.

    *)
  2. reason : String_.t option;
    (*

    Any informational message about the lifecycle state of the environment.

    *)
  3. failureResource : String_.t option;
    (*

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

    *)
}
Sourceval make : ?status:??? -> ?reason:??? -> ?failureResource:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of String_.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t