Class: Aws::Kinesis::Types::HashKeyRange
- Inherits:
-
Struct
- Object
- Struct
- Aws::Kinesis::Types::HashKeyRange
- Includes:
- Structure
- Defined in:
- 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
-
#ending_hash_key ⇒ String
The ending hash key of the hash key range.
-
#starting_hash_key ⇒ String
The starting hash key of the hash key range.
Instance Attribute Details
#ending_hash_key ⇒ String
The ending hash key of the hash key range.
840 841 842 843 844 845 |
# File 'lib/aws-sdk-kinesis/types.rb', line 840 class HashKeyRange < Struct.new( :starting_hash_key, :ending_hash_key) SENSITIVE = [] include Aws::Structure end |
#starting_hash_key ⇒ String
The starting hash key of the hash key range.
840 841 842 843 844 845 |
# File 'lib/aws-sdk-kinesis/types.rb', line 840 class HashKeyRange < Struct.new( :starting_hash_key, :ending_hash_key) SENSITIVE = [] include Aws::Structure end |