Class: Aws::KeyspacesStreams::Types::ListStreamsInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::KeyspacesStreams::Types::ListStreamsInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-keyspacesstreams/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#keyspace_name ⇒ String
The name of the keyspace for which to list streams.
-
#max_results ⇒ Integer
The maximum number of streams to return in a single ‘ListStreams` request.
-
#next_token ⇒ String
An optional pagination token provided by a previous ‘ListStreams` operation.
-
#table_name ⇒ String
The name of the table for which to list streams.
Instance Attribute Details
#keyspace_name ⇒ String
The name of the keyspace for which to list streams. If specified, only streams associated with tables in this keyspace are returned. If omitted, streams from all keyspaces are included in the results.
575 576 577 578 579 580 581 582 |
# File 'lib/aws-sdk-keyspacesstreams/types.rb', line 575 class ListStreamsInput < Struct.new( :keyspace_name, :table_name, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#max_results ⇒ Integer
The maximum number of streams to return in a single ‘ListStreams` request. Default value is 100. The minimum value is 1 and the maximum value is 100.
575 576 577 578 579 580 581 582 |
# File 'lib/aws-sdk-keyspacesstreams/types.rb', line 575 class ListStreamsInput < Struct.new( :keyspace_name, :table_name, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
An optional pagination token provided by a previous ‘ListStreams` operation. If this parameter is specified, the response includes only records beyond the token, up to the value specified by `maxResults`.
575 576 577 578 579 580 581 582 |
# File 'lib/aws-sdk-keyspacesstreams/types.rb', line 575 class ListStreamsInput < Struct.new( :keyspace_name, :table_name, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#table_name ⇒ String
The name of the table for which to list streams. Must be used together with ‘keyspaceName`. If specified, only streams associated with this specific table are returned.
575 576 577 578 579 580 581 582 |
# File 'lib/aws-sdk-keyspacesstreams/types.rb', line 575 class ListStreamsInput < Struct.new( :keyspace_name, :table_name, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |