Class: Aws::Rekognition::Types::KinesisVideoStreamStartSelector

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-rekognition/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.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#fragment_numberString

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

Returns:

  • (String)


4665
4666
4667
4668
4669
4670
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 4665

class KinesisVideoStreamStartSelector < Struct.new(
  :producer_timestamp,
  :fragment_number)
  SENSITIVE = []
  include Aws::Structure
end

#producer_timestampInteger

The timestamp from the producer corresponding to the fragment, in milliseconds, expressed in unix time format.

Returns:

  • (Integer)


4665
4666
4667
4668
4669
4670
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 4665

class KinesisVideoStreamStartSelector < Struct.new(
  :producer_timestamp,
  :fragment_number)
  SENSITIVE = []
  include Aws::Structure
end