Class: Aws::Kinesis::Types::HashKeyRange

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

Overview

The range of possible hash key values for the shard, which is a set of ordered contiguous positive integers.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#ending_hash_keyString

The ending hash key of the hash key range.

Returns:

  • (String)


835
836
837
838
839
840
# File 'gems/aws-sdk-kinesis/lib/aws-sdk-kinesis/types.rb', line 835

class HashKeyRange < Struct.new(
  :starting_hash_key,
  :ending_hash_key)
  SENSITIVE = []
  include Aws::Structure
end

#starting_hash_keyString

The starting hash key of the hash key range.

Returns:

  • (String)


835
836
837
838
839
840
# File 'gems/aws-sdk-kinesis/lib/aws-sdk-kinesis/types.rb', line 835

class HashKeyRange < Struct.new(
  :starting_hash_key,
  :ending_hash_key)
  SENSITIVE = []
  include Aws::Structure
end