Class: Aws::KeyspacesStreams::Types::ListStreamsOutput

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

#next_tokenString

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.

Returns:

  • (String)


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

#streamsArray<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.

Returns:



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