Module Values.MediaAnalysisDetectModerationLabelsConfigSource

Configuration for Moderation Labels Detection.

Sourcetype nonrec t = {
  1. minConfidence : Percent.t option;
    (*

    Specifies the minimum confidence level for the moderation labels to return. Amazon Rekognition doesn't return any labels with a confidence level lower than this specified value.

    *)
  2. projectVersion : ProjectVersionId.t option;
    (*

    Specifies the custom moderation model to be used during the label detection job. If not provided the pre-trained model is used.

    *)
}
Sourceval make : ?minConfidence:??? -> ?projectVersion:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Float of Percent.t | `String of ProjectVersionId.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