Class: Aws::DynamoDBStreams::Types::ListStreamsInput

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

Overview

Represents the input of a ‘ListStreams` operation.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#exclusive_start_stream_arnString

The ARN (Amazon Resource Name) of the first item that this operation will evaluate. Use the value that was returned for ‘LastEvaluatedStreamArn` in the previous operation.

Returns:

  • (String)


417
418
419
420
421
422
423
# File 'lib/aws-sdk-dynamodbstreams/types.rb', line 417

class ListStreamsInput < Struct.new(
  :table_name,
  :limit,
  :exclusive_start_stream_arn)
  SENSITIVE = []
  include Aws::Structure
end

#limitInteger

The maximum number of streams to return. The upper limit is 100.

Returns:

  • (Integer)


417
418
419
420
421
422
423
# File 'lib/aws-sdk-dynamodbstreams/types.rb', line 417

class ListStreamsInput < Struct.new(
  :table_name,
  :limit,
  :exclusive_start_stream_arn)
  SENSITIVE = []
  include Aws::Structure
end

#table_nameString

If this parameter is provided, then only the streams associated with this table name are returned.

Returns:

  • (String)


417
418
419
420
421
422
423
# File 'lib/aws-sdk-dynamodbstreams/types.rb', line 417

class ListStreamsInput < Struct.new(
  :table_name,
  :limit,
  :exclusive_start_stream_arn)
  SENSITIVE = []
  include Aws::Structure
end