Class: Aws::KinesisVideo::Types::ListStreamsInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::KinesisVideo::Types::ListStreamsInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-kinesisvideo/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#max_results ⇒ Integer
The maximum number of streams to return in the response.
-
#next_token ⇒ String
If you specify this parameter, when the result of a ‘ListStreams` operation is truncated, the call returns the `NextToken` in the response.
-
#stream_name_condition ⇒ Types::StreamNameCondition
Optional: Returns only streams that satisfy a specific condition.
Instance Attribute Details
#max_results ⇒ Integer
The maximum number of streams to return in the response. The default is 10,000.
1164 1165 1166 1167 1168 1169 1170 |
# File 'lib/aws-sdk-kinesisvideo/types.rb', line 1164 class ListStreamsInput < Struct.new( :max_results, :next_token, :stream_name_condition) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
If you specify this parameter, when the result of a ‘ListStreams` operation is truncated, the call returns the `NextToken` in the response. To get another batch of streams, provide this token in your next request.
1164 1165 1166 1167 1168 1169 1170 |
# File 'lib/aws-sdk-kinesisvideo/types.rb', line 1164 class ListStreamsInput < Struct.new( :max_results, :next_token, :stream_name_condition) SENSITIVE = [] include Aws::Structure end |
#stream_name_condition ⇒ Types::StreamNameCondition
Optional: Returns only streams that satisfy a specific condition. Currently, you can specify only the prefix of a stream name as a condition.
1164 1165 1166 1167 1168 1169 1170 |
# File 'lib/aws-sdk-kinesisvideo/types.rb', line 1164 class ListStreamsInput < Struct.new( :max_results, :next_token, :stream_name_condition) SENSITIVE = [] include Aws::Structure end |