Class: Aws::KeyspacesStreams::Types::ListStreamsOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::KeyspacesStreams::Types::ListStreamsOutput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-keyspacesstreams/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#next_token ⇒ String
A pagination token that can be used in a subsequent ‘ListStreams` request.
-
#streams ⇒ Array<Types::Stream>
An array of stream objects, each containing summary information about a stream including its ARN, status, and associated table information.
Instance Attribute Details
#next_token ⇒ String
A pagination token that can be used in a subsequent ‘ListStreams` request. This token is returned if the response contains more streams than can be returned in a single response based on the `MaxResults` parameter.
600 601 602 603 604 605 |
# File 'lib/aws-sdk-keyspacesstreams/types.rb', line 600 class ListStreamsOutput < Struct.new( :streams, :next_token) SENSITIVE = [] include Aws::Structure end |
#streams ⇒ Array<Types::Stream>
An array of stream objects, each containing summary information about a stream including its ARN, status, and associated table information. This list includes all streams that match the request criteria.
600 601 602 603 604 605 |
# File 'lib/aws-sdk-keyspacesstreams/types.rb', line 600 class ListStreamsOutput < Struct.new( :streams, :next_token) SENSITIVE = [] include Aws::Structure end |