Module Values.DatasetSummarySource

Contains information about the specific data set, including name, ARN, and status.

Sourcetype nonrec t = {
  1. datasetName : DatasetName.t option;
    (*

    The name of the dataset.

    *)
  2. datasetArn : DatasetArn.t option;
    (*

    The Amazon Resource Name (ARN) of the specified dataset.

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

    Indicates the status of the dataset.

    *)
  4. createdAt : Timestamp.t option;
    (*

    The time at which the dataset was created in Amazon Lookout for Equipment.

    *)
}
Sourceval make : ?datasetName:??? -> ?datasetArn:??? -> ?status:??? -> ?createdAt:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of DatasetName.t | `Timestamp of 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