Class: Aws::KeyspacesStreams::Types::ListStreamsInput

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-keyspacesstreams/types.rb

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#keyspace_nameString

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.

Returns:

  • (String)


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_resultsInteger

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.

Returns:

  • (Integer)


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_tokenString

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`.

Returns:

  • (String)


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_nameString

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.

Returns:

  • (String)


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