Module Values.SpeakerEnrollmentJobSource

Contains all the information about a speaker enrollment job.

Sourcetype nonrec t = {
  1. createdAt : Timestamp.t option;
    (*

    A timestamp of when the speaker enrollment job was created.

    *)
  2. dataAccessRoleArn : IamRoleArn.t option;
    (*

    The IAM role Amazon Resource Name (ARN) that grants Voice ID permissions to access customer's buckets to read the input manifest file and write the job output file.

    *)
  3. domainId : DomainId.t option;
    (*

    The identifier of the domain that contains the speaker enrollment job.

    *)
  4. endedAt : Timestamp.t option;
    (*

    A timestamp of when the speaker enrollment job ended.

    *)
  5. enrollmentConfig : EnrollmentConfig.t option;
    (*

    The configuration that defines the action to take when the speaker is already enrolled in Voice ID, and the FraudDetectionConfig to use.

    *)
  6. failureDetails : FailureDetails.t option;
    (*

    Contains details that are populated when an entire batch job fails. In cases of individual registration job failures, the batch job as a whole doesn't fail; it is completed with a JobStatus of COMPLETED_WITH_ERRORS. You can use the job output file to identify the individual registration requests that failed.

    *)
  7. inputDataConfig : InputDataConfig.t option;
    (*

    The input data config containing an S3 URI for the input manifest file that contains the list of speaker enrollment job requests.

    *)
  8. jobId : JobId.t option;
    (*

    The service-generated identifier for the speaker enrollment job.

    *)
  9. jobName : JobName.t option;
    (*

    The client-provided name for the speaker enrollment job.

    *)
  10. jobProgress : JobProgress.t option;
    (*

    Provides details on job progress. This field shows the completed percentage of registration requests listed in the input file.

    *)
  11. jobStatus : SpeakerEnrollmentJobStatus.t option;
    (*

    The current status of the speaker enrollment job.

    *)
  12. outputDataConfig : OutputDataConfig.t option;
    (*

    The output data config containing the S3 location where Voice ID writes the job output file; you must also include a KMS key ID to encrypt the file.

    *)
}
Sourceval make : ?createdAt:??? -> ?dataAccessRoleArn:??? -> ?domainId:??? -> ?endedAt:??? -> ?enrollmentConfig:??? -> ?failureDetails:??? -> ?inputDataConfig:??? -> ?jobId:??? -> ?jobName:??? -> ?jobProgress:??? -> ?jobStatus:??? -> ?outputDataConfig:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of IamRoleArn.t | `Structure of (string * [> `Enum of string | `Integer of Integer.t | `String of String_.t | `Structure of (string * [> `Enum of string | `Integer of Score.t | `List of [> `String of WatchlistId.t ] list ]) list ]) list | `Timestamp of Timestamp.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