Module Values_1.ExecutionAttemptSource

A run attempt for a column statistics task run.

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

    The status of the last column statistics task run.

    *)
  2. columnStatisticsTaskRunId : Values_0.HashString.t option;
    (*

    A task run ID for the last column statistics task run.

    *)
  3. executionTimestamp : Values_0.Timestamp.t option;
    (*

    A timestamp when the last column statistics task run occurred.

    *)
  4. errorMessage : Values_0.DescriptionString.t option;
    (*

    An error message associated with the last column statistics task run.

    *)
}
Sourceval make : ?status:??? -> ?columnStatisticsTaskRunId:??? -> ?executionTimestamp:??? -> ?errorMessage:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of Values_0.HashString.t | `Timestamp of Values_0.Timestamp.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