Module Values.S3DestinationSource

The Amazon S3 bucket location to which Amazon Rekognition publishes the detailed inference results of a video analysis operation. These results include the name of the stream processor resource, the session ID of the stream processing session, and labeled timestamps and bounding boxes for detected labels.

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

    The name of the Amazon S3 bucket you want to associate with the streaming video project. You must be the owner of the Amazon S3 bucket.

    *)
  2. keyPrefix : S3KeyPrefix.t option;
    (*

    The prefix value of the location within the bucket that you want the information to be published to. For more information, see Using prefixes.

    *)
}
Sourceval make : ?bucket:??? -> ?keyPrefix:??? -> 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