Class: Aws::KinesisVideoArchivedMedia::Types::ClipFragmentSelector
- Inherits:
-
Struct
- Object
- Struct
- Aws::KinesisVideoArchivedMedia::Types::ClipFragmentSelector
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-kinesisvideoarchivedmedia/types.rb
Overview
Describes the timestamp range and timestamp origin of a range of fragments.
Fragments that have duplicate producer timestamps are deduplicated. This means that if producers are producing a stream of fragments with producer timestamps that are approximately equal to the true clock time, the clip will contain all of the fragments within the requested timestamp range. If some fragments are ingested within the same time range and very different points in time, only the oldest ingested collection of fragments are returned.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#fragment_selector_type ⇒ String
The origin of the timestamps to use (Server or Producer).
-
#timestamp_range ⇒ Types::ClipTimestampRange
The range of timestamps to return.
Instance Attribute Details
#fragment_selector_type ⇒ String
The origin of the timestamps to use (Server or Producer).
53 54 55 56 57 58 |
# File 'lib/aws-sdk-kinesisvideoarchivedmedia/types.rb', line 53 class ClipFragmentSelector < Struct.new( :fragment_selector_type, :timestamp_range) SENSITIVE = [] include Aws::Structure end |
#timestamp_range ⇒ Types::ClipTimestampRange
The range of timestamps to return.
53 54 55 56 57 58 |
# File 'lib/aws-sdk-kinesisvideoarchivedmedia/types.rb', line 53 class ClipFragmentSelector < Struct.new( :fragment_selector_type, :timestamp_range) SENSITIVE = [] include Aws::Structure end |