Module Values.EnrollmentConfigSource

Contains configurations defining enrollment behavior for the batch job.

Sourcetype nonrec t = {
  1. existingEnrollmentAction : ExistingEnrollmentAction.t option;
    (*

    The action to take when the specified speaker is already enrolled in the specified domain. The default value is SKIP, which skips the enrollment for the existing speaker. Setting the value to OVERWRITE replaces the existing voice prints and enrollment audio stored for that speaker with new data generated from the latest audio.

    *)
  2. fraudDetectionConfig : EnrollmentJobFraudDetectionConfig.t option;
    (*

    The fraud detection configuration to use for the speaker enrollment job.

    *)
}
Sourceval make : ?existingEnrollmentAction:??? -> ?fraudDetectionConfig:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Structure of (string * [> `Enum of string | `Integer of Score.t | `List of [> `String of WatchlistId.t ] list ]) list ]) 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