Module Values.DatasetMetadataSource

Summary information for an Amazon Rekognition Custom Labels dataset. For more information, see ProjectDescription.

Sourcetype nonrec t = {
  1. creationTimestamp : DateTime.t option;
    (*

    The Unix timestamp for the date and time that the dataset was created.

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

    The type of the dataset.

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

    The Amazon Resource Name (ARN) for the dataset.

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

    The status for the dataset.

    *)
  5. statusMessage : StatusMessage.t option;
    (*

    The status message for the dataset.

    *)
  6. statusMessageCode : DatasetStatusMessageCode.t option;
    (*

    The status message code for the dataset operation. If a service error occurs, try the API call again later. If a client error occurs, check the input parameters to the dataset API call that failed.

    *)
}
Sourceval make : ?creationTimestamp:??? -> ?datasetType:??? -> ?datasetArn:??? -> ?status:??? -> ?statusMessage:??? -> ?statusMessageCode:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of DatasetArn.t | `Timestamp of DateTime.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