Class: Aws::DynamoDBStreams::Types::ListStreamsInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::DynamoDBStreams::Types::ListStreamsInput
- 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
-
#exclusive_start_stream_arn ⇒ String
The ARN (Amazon Resource Name) of the first item that this operation will evaluate.
-
#limit ⇒ Integer
The maximum number of streams to return.
-
#table_name ⇒ String
If this parameter is provided, then only the streams associated with this table name are returned.
Instance Attribute Details
#exclusive_start_stream_arn ⇒ String
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.
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 |
#limit ⇒ Integer
The maximum number of streams to return. The upper limit is 100.
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_name ⇒ String
If this parameter is provided, then only the streams associated with this table name are returned.
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 |