Module Values.StreamProcessorOutputSource

Information about the Amazon Kinesis Data Streams stream to which a Amazon Rekognition Video stream processor streams the results of a video analysis. For more information, see CreateStreamProcessor in the Amazon Rekognition Developer Guide.

Sourcetype nonrec t = {
  1. kinesisDataStream : KinesisDataStream.t option;
    (*

    The Amazon Kinesis Data Streams stream to which the Amazon Rekognition stream processor streams the analysis results.

    *)
  2. s3Destination : S3Destination.t option;
    (*

    The Amazon S3 bucket location to which Amazon Rekognition publishes the detailed inference results of a video analysis operation.

    *)
}
Sourceval make : ?kinesisDataStream:??? -> ?s3Destination:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `String of KinesisDataArn.t ]) 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