Class: Aws::KinesisVideoArchivedMedia::Types::ListFragmentsInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::KinesisVideoArchivedMedia::Types::ListFragmentsInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-kinesisvideoarchivedmedia/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#fragment_selector ⇒ Types::FragmentSelector
Describes the timestamp range and timestamp origin for the range of fragments to return.
-
#max_results ⇒ Integer
The total number of fragments to return.
-
#next_token ⇒ String
A token to specify where to start paginating.
-
#stream_arn ⇒ String
The Amazon Resource Name (ARN) of the stream from which to retrieve a fragment list.
-
#stream_name ⇒ String
The name of the stream from which to retrieve a fragment list.
Instance Attribute Details
#fragment_selector ⇒ Types::FragmentSelector
Describes the timestamp range and timestamp origin for the range of fragments to return.
<note markdown=“1”> This is only required when the ‘NextToken` isn’t passed in the API.
</note>
1138 1139 1140 1141 1142 1143 1144 1145 1146 |
# File 'lib/aws-sdk-kinesisvideoarchivedmedia/types.rb', line 1138 class ListFragmentsInput < Struct.new( :stream_name, :stream_arn, :max_results, :next_token, :fragment_selector) SENSITIVE = [] include Aws::Structure end |
#max_results ⇒ Integer
The total number of fragments to return. If the total number of fragments available is more than the value specified in ‘max-results`, then a ListFragmentsOutput$NextToken is provided in the output that you can use to resume pagination.
1138 1139 1140 1141 1142 1143 1144 1145 1146 |
# File 'lib/aws-sdk-kinesisvideoarchivedmedia/types.rb', line 1138 class ListFragmentsInput < Struct.new( :stream_name, :stream_arn, :max_results, :next_token, :fragment_selector) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
A token to specify where to start paginating. This is the ListFragmentsOutput$NextToken from a previously truncated response.
1138 1139 1140 1141 1142 1143 1144 1145 1146 |
# File 'lib/aws-sdk-kinesisvideoarchivedmedia/types.rb', line 1138 class ListFragmentsInput < Struct.new( :stream_name, :stream_arn, :max_results, :next_token, :fragment_selector) SENSITIVE = [] include Aws::Structure end |
#stream_arn ⇒ String
The Amazon Resource Name (ARN) of the stream from which to retrieve a fragment list. Specify either this parameter or the ‘StreamName` parameter.
1138 1139 1140 1141 1142 1143 1144 1145 1146 |
# File 'lib/aws-sdk-kinesisvideoarchivedmedia/types.rb', line 1138 class ListFragmentsInput < Struct.new( :stream_name, :stream_arn, :max_results, :next_token, :fragment_selector) SENSITIVE = [] include Aws::Structure end |
#stream_name ⇒ String
The name of the stream from which to retrieve a fragment list. Specify either this parameter or the ‘StreamARN` parameter.
1138 1139 1140 1141 1142 1143 1144 1145 1146 |
# File 'lib/aws-sdk-kinesisvideoarchivedmedia/types.rb', line 1138 class ListFragmentsInput < Struct.new( :stream_name, :stream_arn, :max_results, :next_token, :fragment_selector) SENSITIVE = [] include Aws::Structure end |