Module Values.DatasetSummarySource

The summary details for the dataset.

Sourcetype nonrec t = {
  1. id : ID.t option;
    (*

    The ID of the dataset.

    *)
  2. arn : ARN.t option;
    (*

    The ARN of the dataset. The format is arn:${Partition}:iotsitewise:${Region}:${Account}:dataset/${DatasetId}.

    *)
  3. name : RestrictedName.t option;
    (*

    The name of the dataset.

    *)
  4. description : RestrictedDescription.t option;
    (*

    A description about the dataset, and its functionality.

    *)
  5. creationDate : Timestamp.t option;
    (*

    The dataset creation date, in Unix epoch time.

    *)
  6. lastUpdateDate : Timestamp.t option;
    (*

    The date the dataset was last updated, in Unix epoch time.

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

    The status of the dataset. This contains the state and any error messages. The state is ACTIVE when ready to use.

    *)
}
Sourceval make : ?id:??? -> ?arn:??? -> ?name:??? -> ?description:??? -> ?creationDate:??? -> ?lastUpdateDate:??? -> ?status:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of ID.t | `Structure of (string * [> `Enum of string | `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `Enum of string | `String of DetailedErrorMessage.t ]) list ] list | `String of ErrorMessage.t ]) list ]) list | `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