GetLabelDetectionResponse

public struct GetLabelDetectionResponse : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • The current status of the label detection job.

    Declaration

    Swift

    public let jobStatus: VideoJobStatus?
  • Version number of the label detection model that was used to detect labels.

    Declaration

    Swift

    public let labelModelVersion: String?
  • An array of labels detected in the video. Each element contains the detected label and the time, in milliseconds from the start of the video, that the label was detected.

    Declaration

    Swift

    public let labels: [LabelDetection]?
  • 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 labels.

    Declaration

    Swift

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

    Declaration

    Swift

    public let statusMessage: String?
  • Information about a video that Amazon Rekognition Video analyzed. Videometadata is returned in every page of paginated responses from a Amazon Rekognition video operation.

    Declaration

    Swift

    public let videoMetadata: VideoMetadata?
  • Undocumented

    Declaration

    Swift

    public init(jobStatus: VideoJobStatus? = nil, labelModelVersion: String? = nil, labels: [LabelDetection]? = nil, nextToken: String? = nil, statusMessage: String? = nil, videoMetadata: VideoMetadata? = nil)