Class: Aws::Kinesis::Types::GetRecordsInput

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

Overview

Represents the input for GetRecords.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#limitInteger

The maximum number of records to return. Specify a value of up to 10,000. If you specify a value that is greater than 10,000, GetRecords throws InvalidArgumentException. The default value is 10,000.

Returns:

  • (Integer)


669
670
671
672
673
674
675
# File 'gems/aws-sdk-kinesis/lib/aws-sdk-kinesis/types.rb', line 669

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

#shard_iteratorString

The position in the shard from which you want to start sequentially reading data records. A shard iterator specifies this position using the sequence number of a data record in the shard.

Returns:

  • (String)


669
670
671
672
673
674
675
# File 'gems/aws-sdk-kinesis/lib/aws-sdk-kinesis/types.rb', line 669

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

#stream_arnString

The ARN of the stream.

Returns:

  • (String)


669
670
671
672
673
674
675
# File 'gems/aws-sdk-kinesis/lib/aws-sdk-kinesis/types.rb', line 669

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