Class: Aws::DynamoDBStreams::Types::ListStreamsInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::DynamoDBStreams::Types::ListStreamsInput
- Defined in:
- gems/aws-sdk-dynamodbstreams/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.
423 424 425 426 427 428 429 |
# File 'gems/aws-sdk-dynamodbstreams/lib/aws-sdk-dynamodbstreams/types.rb', line 423 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.
423 424 425 426 427 428 429 |
# File 'gems/aws-sdk-dynamodbstreams/lib/aws-sdk-dynamodbstreams/types.rb', line 423 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.
423 424 425 426 427 428 429 |
# File 'gems/aws-sdk-dynamodbstreams/lib/aws-sdk-dynamodbstreams/types.rb', line 423 class ListStreamsInput < Struct.new( :table_name, :limit, :exclusive_start_stream_arn) SENSITIVE = [] include Aws::Structure end |