Class: Aws::KinesisVideoArchivedMedia::Types::ClipFragmentSelector

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

Instance Attribute Details

#fragment_selector_typeString

The origin of the timestamps to use (Server or Producer).

Returns:

  • (String)


53
54
55
56
57
58
# File 'gems/aws-sdk-kinesisvideoarchivedmedia/lib/aws-sdk-kinesisvideoarchivedmedia/types.rb', line 53

class ClipFragmentSelector < Struct.new(
  :fragment_selector_type,
  :timestamp_range)
  SENSITIVE = []
  include Aws::Structure
end

#timestamp_rangeTypes::ClipTimestampRange

The range of timestamps to return.



53
54
55
56
57
58
# File 'gems/aws-sdk-kinesisvideoarchivedmedia/lib/aws-sdk-kinesisvideoarchivedmedia/types.rb', line 53

class ClipFragmentSelector < Struct.new(
  :fragment_selector_type,
  :timestamp_range)
  SENSITIVE = []
  include Aws::Structure
end