Class: Aws::DynamoDBStreams::Types::DescribeStreamInput

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

Overview

Represents the input of a DescribeStream operation.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#exclusive_start_shard_idString

The shard ID of the first item that this operation will evaluate. Use the value that was returned for LastEvaluatedShardId in the previous operation.

Returns:

  • (String)


131
132
133
134
135
136
137
# File 'gems/aws-sdk-dynamodbstreams/lib/aws-sdk-dynamodbstreams/types.rb', line 131

class DescribeStreamInput < Struct.new(
  :stream_arn,
  :limit,
  :exclusive_start_shard_id)
  SENSITIVE = []
  include Aws::Structure
end

#limitInteger

The maximum number of shard objects to return. The upper limit is 100.

Returns:

  • (Integer)


131
132
133
134
135
136
137
# File 'gems/aws-sdk-dynamodbstreams/lib/aws-sdk-dynamodbstreams/types.rb', line 131

class DescribeStreamInput < Struct.new(
  :stream_arn,
  :limit,
  :exclusive_start_shard_id)
  SENSITIVE = []
  include Aws::Structure
end

#stream_arnString

The Amazon Resource Name (ARN) for the stream.

Returns:

  • (String)


131
132
133
134
135
136
137
# File 'gems/aws-sdk-dynamodbstreams/lib/aws-sdk-dynamodbstreams/types.rb', line 131

class DescribeStreamInput < Struct.new(
  :stream_arn,
  :limit,
  :exclusive_start_shard_id)
  SENSITIVE = []
  include Aws::Structure
end