Module Values.StartTextDetectionRequestSource

Starts asynchronous detection of text in a stored video. Amazon Rekognition Video can detect text in a video stored in an Amazon S3 bucket. Use Video to specify the bucket name and the filename of the video. StartTextDetection returns a job identifier (JobId) which you use to get the results of the operation. When text detection is finished, Amazon Rekognition Video publishes a completion status to the Amazon Simple Notification Service topic that you specify in NotificationChannel. To get the results of the text detection operation, first check that the status value published to the Amazon SNS topic is SUCCEEDED. if so, call GetTextDetection and pass the job identifier (JobId) from the initial call to StartTextDetection.

Sourcetype nonrec t = {
  1. video : Video.t;
  2. clientRequestToken : ClientRequestToken.t option;
    (*

    Idempotent token used to identify the start request. If you use the same token with multiple StartTextDetection requests, the same JobId is returned. Use ClientRequestToken to prevent the same job from being accidentaly started more than once.

    *)
  3. notificationChannel : NotificationChannel.t option;
  4. jobTag : JobTag.t option;
    (*

    An identifier returned in the completion status published by your Amazon Simple Notification Service topic. For example, you can use JobTag to group related jobs and identify them in the completion notification.

    *)
  5. filters : StartTextDetectionFilters.t option;
    (*

    Optional parameters that let you set criteria the text must meet to be included in your response.

    *)
}
Sourceval context_ : string
Sourceval make : ?clientRequestToken:??? -> ?notificationChannel:??? -> ?jobTag:??? -> ?filters:??? -> video:Video.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of ClientRequestToken.t | `Structure of (string * [> `List of [> `Structure of (string * [> `List of [> `Structure of (string * [> `Float of Float_.t ]) list ] list | `Structure of (string * [> `Float of Float_.t ]) list ]) list ] list | `String of SNSTopicArn.t | `Structure of (string * [> `Float of Percent.t | `String of S3Bucket.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