Module Values.DatasetStatusSource

The status of the dataset. This contains the state and any error messages. The state is ACTIVE when ready to use.

Sourcetype nonrec t = {
  1. state : DatasetState.t option;
    (*

    The current status of the dataset.

    *)
  2. error : ErrorDetails.t option;
}
Sourceval make : ?state:??? -> ?error:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `Enum of string | `String of DetailedErrorMessage.t ]) list ] list | `String of ErrorMessage.t ]) list ]) 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