Class: Aws::Kinesis::Types::ListStreamsInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::Kinesis::Types::ListStreamsInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-kinesis/types.rb
Overview
Represents the input for ‘ListStreams`.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#exclusive_start_stream_name ⇒ String
The name of the stream to start the list with.
-
#limit ⇒ Integer
The maximum number of streams to list.
- #next_token ⇒ String
Instance Attribute Details
#exclusive_start_stream_name ⇒ String
The name of the stream to start the list with.
1285 1286 1287 1288 1289 1290 1291 |
# File 'lib/aws-sdk-kinesis/types.rb', line 1285 class ListStreamsInput < Struct.new( :limit, :exclusive_start_stream_name, :next_token) SENSITIVE = [] include Aws::Structure end |
#limit ⇒ Integer
The maximum number of streams to list. The default value is 100. If you specify a value greater than 100, at most 100 results are returned.
1285 1286 1287 1288 1289 1290 1291 |
# File 'lib/aws-sdk-kinesis/types.rb', line 1285 class ListStreamsInput < Struct.new( :limit, :exclusive_start_stream_name, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
1285 1286 1287 1288 1289 1290 1291 |
# File 'lib/aws-sdk-kinesis/types.rb', line 1285 class ListStreamsInput < Struct.new( :limit, :exclusive_start_stream_name, :next_token) SENSITIVE = [] include Aws::Structure end |