Class: Aws::Rekognition::Types::StreamProcessingStartSelector
- Inherits:
-
Struct
- Object
- Struct
- Aws::Rekognition::Types::StreamProcessingStartSelector
- Defined in:
- gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb
Overview
Note:
When making an API call, you may pass StreamProcessingStartSelector data as a hash:
{
kvs_stream_start_selector: {
producer_timestamp: 1,
fragment_number: "KinesisVideoStreamFragmentNumber",
},
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#kvs_stream_start_selector ⇒ Types::KinesisVideoStreamStartSelector
Specifies the starting point in the stream to start processing.
Instance Attribute Details
#kvs_stream_start_selector ⇒ Types::KinesisVideoStreamStartSelector
Specifies the starting point in the stream to start processing. This can be done with a timestamp or a fragment number in a Kinesis stream.
6482 6483 6484 6485 6486 |
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 6482 class StreamProcessingStartSelector < Struct.new( :kvs_stream_start_selector) SENSITIVE = [] include Aws::Structure end |