Class: Aws::Kinesis::Types::ListStreamsInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::Kinesis::Types::ListStreamsInput
- Defined in:
- gems/aws-sdk-kinesis/lib/aws-sdk-kinesis/types.rb
Overview
Note:
When making an API call, you may pass ListStreamsInput data as a hash:
{
limit: 1,
exclusive_start_stream_name: "StreamName",
}
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.
Instance Attribute Details
#exclusive_start_stream_name ⇒ String
The name of the stream to start the list with.
1249 1250 1251 1252 1253 1254 |
# File 'gems/aws-sdk-kinesis/lib/aws-sdk-kinesis/types.rb', line 1249 class ListStreamsInput < Struct.new( :limit, :exclusive_start_stream_name) SENSITIVE = [] include Aws::Structure end |
#limit ⇒ Integer
The maximum number of streams to list.
1249 1250 1251 1252 1253 1254 |
# File 'gems/aws-sdk-kinesis/lib/aws-sdk-kinesis/types.rb', line 1249 class ListStreamsInput < Struct.new( :limit, :exclusive_start_stream_name) SENSITIVE = [] include Aws::Structure end |