Module Values.ProjectDescriptionSource

A description of an Amazon Rekognition Custom Labels project. For more information, see DescribeProjects.

Sourcetype nonrec t = {
  1. projectArn : ProjectArn.t option;
    (*

    The Amazon Resource Name (ARN) of the project.

    *)
  2. creationTimestamp : DateTime.t option;
    (*

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

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

    The current status of the project.

    *)
  4. datasets : DatasetMetadataList.t option;
    (*

    Information about the training and test datasets in the project.

    *)
  5. feature : CustomizationFeature.t option;
    (*

    Specifies the project that is being customized.

    *)
  6. autoUpdate : ProjectAutoUpdate.t option;
    (*

    Indicates whether automatic retraining will be attempted for the versions of the project. Applies only to adapters.

    *)
}
Sourceval make : ?projectArn:??? -> ?creationTimestamp:??? -> ?status:??? -> ?datasets:??? -> ?feature:??? -> ?autoUpdate:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `Enum of string | `String of DatasetArn.t | `Timestamp of DateTime.t ]) list ] list | `String of ProjectArn.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