Module Values.ShotSegmentSource

Information about a shot detection segment detected in a video. For more information, see SegmentDetection.

Sourcetype nonrec t = {
  1. index : ULong.t option;
    (*

    An Identifier for a shot detection segment detected in a video.

    *)
  2. confidence : SegmentConfidence.t option;
    (*

    The confidence that Amazon Rekognition Video has in the accuracy of the detected segment.

    *)
}
Sourceval make : ?index:??? -> ?confidence:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Float of SegmentConfidence.t | `Long of ULong.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