Class: Aws::MemoryDB::Types::ShardConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::MemoryDB::Types::ShardConfiguration
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-memorydb/types.rb
Overview
Shard configuration options. Each shard configuration has the following: Slots and ReplicaCount.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#replica_count ⇒ Integer
The number of read replica nodes in this shard.
-
#slots ⇒ String
A string that specifies the keyspace for a particular node group.
Instance Attribute Details
#replica_count ⇒ Integer
The number of read replica nodes in this shard.
2698 2699 2700 2701 2702 2703 |
# File 'lib/aws-sdk-memorydb/types.rb', line 2698 class ShardConfiguration < Struct.new( :slots, :replica_count) SENSITIVE = [] include Aws::Structure end |
#slots ⇒ String
A string that specifies the keyspace for a particular node group. Keyspaces range from 0 to 16,383. The string is in the format startkey-endkey.
2698 2699 2700 2701 2702 2703 |
# File 'lib/aws-sdk-memorydb/types.rb', line 2698 class ShardConfiguration < Struct.new( :slots, :replica_count) SENSITIVE = [] include Aws::Structure end |