Class: Aws::Rekognition::Types::KinesisVideoStreamStartSelector
- Inherits:
-
Struct
- Object
- Struct
- Aws::Rekognition::Types::KinesisVideoStreamStartSelector
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-rekognition/types.rb
Overview
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].
[1]: docs.aws.amazon.com/kinesisvideostreams/latest/dg/API_reader_Fragment.html
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#fragment_number ⇒ String
The unique identifier of the fragment.
-
#producer_timestamp ⇒ Integer
The timestamp from the producer corresponding to the fragment, in milliseconds, expressed in unix time format.
Instance Attribute Details
#fragment_number ⇒ String
The unique identifier of the fragment. This value monotonically increases based on the ingestion order.
4678 4679 4680 4681 4682 4683 |
# File 'lib/aws-sdk-rekognition/types.rb', line 4678 class KinesisVideoStreamStartSelector < Struct.new( :producer_timestamp, :fragment_number) SENSITIVE = [] include Aws::Structure end |
#producer_timestamp ⇒ Integer
The timestamp from the producer corresponding to the fragment, in milliseconds, expressed in unix time format.
4678 4679 4680 4681 4682 4683 |
# File 'lib/aws-sdk-rekognition/types.rb', line 4678 class KinesisVideoStreamStartSelector < Struct.new( :producer_timestamp, :fragment_number) SENSITIVE = [] include Aws::Structure end |