Module Values.CelebrityDetailSource

Information about a recognized celebrity.

Sourcetype nonrec t = {
  1. urls : Urls.t option;
    (*

    An array of URLs pointing to additional celebrity information.

    *)
  2. name : String_.t option;
    (*

    The name of the celebrity.

    *)
  3. id : RekognitionUniqueId.t option;
    (*

    The unique identifier for the celebrity.

    *)
  4. confidence : Percent.t option;
    (*

    The confidence, in percentage, that Amazon Rekognition has that the recognized face is the celebrity.

    *)
  5. boundingBox : BoundingBox.t option;
    (*

    Bounding box around the body of a celebrity.

    *)
  6. face : FaceDetail.t option;
    (*

    Face details for the recognized celebrity.

    *)
  7. knownGender : KnownGender.t option;
    (*

    Retrieves the known gender for the celebrity.

    *)
}
Sourceval make : ?urls:??? -> ?name:??? -> ?id:??? -> ?confidence:??? -> ?boundingBox:??? -> ?face:??? -> ?knownGender:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Float of Percent.t | `List of [> `String of Url.t ] list | `String of String_.t | `Structure of (string * [> `Enum of string | `Float of Float_.t | `List of [> `Structure of (string * [> `Enum of string | `Float of Percent.t ]) list ] list | `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `Float of Float_.t | `Integer of UInteger.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