GetTextDetectionResponse

public struct GetTextDetectionResponse : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • Current status of the text detection job.

    Declaration

    Swift

    public let jobStatus: VideoJobStatus?
  • If the response is truncated, Amazon Rekognition Video returns this token that you can use in the subsequent request to retrieve the next set of text.

    Declaration

    Swift

    public let nextToken: String?
  • If the job fails, StatusMessage provides a descriptive error message.

    Declaration

    Swift

    public let statusMessage: String?
  • An array of text detected in the video. Each element contains the detected text, the time in milliseconds from the start of the video that the text was detected, and where it was detected on the screen.

    Declaration

    Swift

    public let textDetections: [TextDetectionResult]?
  • Version number of the text detection model that was used to detect text.

    Declaration

    Swift

    public let textModelVersion: String?
  • Undocumented

    Declaration

    Swift

    public let videoMetadata: VideoMetadata?
  • Undocumented

    Declaration

    Swift

    public init(jobStatus: VideoJobStatus? = nil, nextToken: String? = nil, statusMessage: String? = nil, textDetections: [TextDetectionResult]? = nil, textModelVersion: String? = nil, videoMetadata: VideoMetadata? = nil)