Module Values.LivenessOutputConfigSource

Contains settings that specify the location of an Amazon S3 bucket used to store the output of a Face Liveness session. Note that the S3 bucket must be located in the caller's AWS account and in the same region as the Face Liveness end-point. Additionally, the Amazon S3 object keys are auto-generated by the Face Liveness system.

Sourcetype nonrec t = {
  1. s3Bucket : S3Bucket.t;
    (*

    The path to an AWS Amazon S3 bucket used to store Face Liveness session results.

    *)
  2. s3KeyPrefix : LivenessS3KeyPrefix.t option;
    (*

    The prefix prepended to the output files for the Face Liveness session results.

    *)
}
Sourceval context_ : string
Sourceval make : ?s3KeyPrefix:??? -> s3Bucket:S3Bucket.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of S3Bucket.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