Module Values.DatasetDescriptionSource

A description for a dataset. For more information, see DescribeDataset. The status fields Status, StatusMessage, and StatusMessageCode reflect the last operation on the dataset.

Sourcetype nonrec t = {
  1. creationTimestamp : DateTime.t option;
    (*

    The Unix timestamp for the time and date that the dataset was created.

    *)
  2. lastUpdatedTimestamp : DateTime.t option;
    (*

    The Unix timestamp for the date and time that the dataset was last updated.

    *)
  3. status : DatasetStatus.t option;
    (*

    The status of the dataset.

    *)
  4. statusMessage : StatusMessage.t option;
    (*

    The status message for the dataset.

    *)
  5. statusMessageCode : DatasetStatusMessageCode.t option;
    (*

    The status message code for the dataset operation. If a service error occurs, try the API call again later. If a client error occurs, check the input parameters to the dataset API call that failed.

    *)
  6. datasetStats : DatasetStats.t option;
    (*

    The status message code for the dataset.

    *)
}
Sourceval make : ?creationTimestamp:??? -> ?lastUpdatedTimestamp:??? -> ?status:??? -> ?statusMessage:??? -> ?statusMessageCode:??? -> ?datasetStats:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of StatusMessage.t | `Structure of (string * [> `Integer of UInteger.t ]) list | `Timestamp of DateTime.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