Module Values.TrainingDatasetSummarySource

Provides information about the training dataset.

Sourcetype nonrec t = {
  1. createTime : SyntheticTimestamp_date_time.t option;
    (*

    The time at which the training dataset was created.

    *)
  2. updateTime : SyntheticTimestamp_date_time.t option;
    (*

    The most recent time at which the training dataset was updated.

    *)
  3. trainingDatasetArn : TrainingDatasetArn.t option;
    (*

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

    *)
  4. name : NameString.t option;
    (*

    The name of the training dataset.

    *)
  5. status : TrainingDatasetStatus.t option;
    (*

    The status of the training dataset.

    *)
  6. description : ResourceDescription.t option;
    (*

    The description of the training dataset.

    *)
}
Sourceval make : ?createTime:??? -> ?updateTime:??? -> ?trainingDatasetArn:??? -> ?name:??? -> ?status:??? -> ?description:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of TrainingDatasetArn.t | `Timestamp of SyntheticTimestamp_date_time.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