Module Values.DatasetUpdateSummarySource

Describes an update to a dataset.

Sourcetype nonrec t = {
  1. schemaArn : Arn.t option;
    (*

    The Amazon Resource Name (ARN) of the schema that replaced the previous schema of the dataset.

    *)
  2. status : Status.t option;
    (*

    The status of the dataset update.

    *)
  3. failureReason : FailureReason.t option;
    (*

    If updating a dataset fails, provides the reason why.

    *)
  4. creationDateTime : Date.t option;
    (*

    The creation date and time (in Unix time) of the dataset update.

    *)
  5. lastUpdatedDateTime : Date.t option;
    (*

    The last update date and time (in Unix time) of the dataset.

    *)
}
Sourceval make : ?schemaArn:??? -> ?status:??? -> ?failureReason:??? -> ?creationDateTime:??? -> ?lastUpdatedDateTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Arn.t | `Timestamp of Date.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