AWSRekognitionKinesisVideoStreamStartSelector

Objective-C

@interface AWSRekognitionKinesisVideoStreamStartSelector

Swift

class AWSRekognitionKinesisVideoStreamStartSelector

Specifies the starting point in a Kinesis stream to start processing. You can use the producer timestamp or the fragment number. One of either producer timestamp or fragment number is required. If you use the producer timestamp, you must put the time in milliseconds. For more information about fragment numbers, see Fragment.

  • The unique identifier of the fragment. This value monotonically increases based on the ingestion order.

    Declaration

    Objective-C

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

    Swift

    var fragmentNumber: String? { get set }
  • The timestamp from the producer corresponding to the fragment, in milliseconds, expressed in unix time format.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSNumber *_Nullable producerTimestamp;

    Swift

    var producerTimestamp: NSNumber? { get set }