Module Values.OutputDataConfigSource

The configuration containing output file information for a batch job.

Sourcetype nonrec t = {
  1. kmsKeyId : KmsKeyId.t option;
    (*

    The identifier of the KMS key you want Voice ID to use to encrypt the output file of a speaker enrollment job/fraudster registration job.

    *)
  2. s3Uri : S3Uri.t;
    (*

    The S3 path of the folder where Voice ID writes the job output file. It has a *.out extension. For example, if the input file name is input-file.json and the output folder path is s3://output-bucket/output-folder, the full output file path is s3://output-bucket/output-folder/job-Id/input-file.json.out.

    *)
}
Sourceval context_ : string
Sourceval make : ?kmsKeyId:??? -> s3Uri:S3Uri.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of KmsKeyId.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