You are viewing documentation for version 3 of the AWS SDK for Ruby. Version 2 documentation can be found here.
Class: Aws::Kinesis::Types::ListStreamsOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::Kinesis::Types::ListStreamsOutput
- Defined in:
- gems/aws-sdk-kinesis/lib/aws-sdk-kinesis/types.rb
Overview
Represents the output for ListStreams
.
Instance Attribute Summary collapse
-
#has_more_streams ⇒ Boolean
If set to
true
, there are more streams available to list. -
#stream_names ⇒ Array<String>
The names of the streams that are associated with the AWS account making the
ListStreams
request.
Instance Attribute Details
#has_more_streams ⇒ Boolean
If set to true
, there are more streams available to list.
1189 1190 1191 1192 1193 |
# File 'gems/aws-sdk-kinesis/lib/aws-sdk-kinesis/types.rb', line 1189 class ListStreamsOutput < Struct.new( :stream_names, :has_more_streams) include Aws::Structure end |
#stream_names ⇒ Array<String>
The names of the streams that are associated with the AWS account
making the ListStreams
request.
1189 1190 1191 1192 1193 |
# File 'gems/aws-sdk-kinesis/lib/aws-sdk-kinesis/types.rb', line 1189 class ListStreamsOutput < Struct.new( :stream_names, :has_more_streams) include Aws::Structure end |