Module Values.DatasetSummarySource

Provides a summary of the properties of a dataset. For a complete listing, call the DescribeDataset API.

Sourcetype nonrec t = {
  1. name : Name.t option;
    (*

    The name of the dataset.

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

    The Amazon Resource Name (ARN) of the dataset.

    *)
  3. datasetType : DatasetType.t option;
    (*

    The dataset type. One of the following values: Interactions Items Users Event-Interactions

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

    The status of the dataset. A dataset can be in one of the following states: CREATE PENDING > CREATE IN_PROGRESS > ACTIVE -or- CREATE FAILED DELETE PENDING > DELETE IN_PROGRESS

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

    The date and time (in Unix time) that the dataset was created.

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

    The date and time (in Unix time) that the dataset was last updated.

    *)
}
Sourceval make : ?name:??? -> ?datasetArn:??? -> ?datasetType:??? -> ?status:??? -> ?creationDateTime:??? -> ?lastUpdatedDateTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Name.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