AWSKinesisVideoArchivedMediaImage

Objective-C

@interface AWSKinesisVideoArchivedMediaImage

Swift

class AWSKinesisVideoArchivedMediaImage

A structure that contains the Timestamp, Error, and ImageContent.

  • The error message shown when the image for the provided timestamp was not extracted due to a non-tryable error. An error will be returned if:

    • There is no media that exists for the specified Timestamp.

    • The media for the specified time does not allow an image to be extracted. In this case the media is audio only, or the incorrect media has been ingested.

    Declaration

    Objective-C

    @property (nonatomic) AWSKinesisVideoArchivedMediaImageError error;

    Swift

    var error: AWSKinesisVideoArchivedMediaImageError { get set }
  • An attribute of the Image object that is Base64 encoded.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable imageContent;

    Swift

    var imageContent: String? { get set }
  • An attribute of the Image object that is used to extract an image from the video stream. This field is used to manage gaps on images or to better understand the pagination window.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSDate *_Nullable timeStamp;

    Swift

    var timeStamp: Date? { get set }