Class: Aws::MemoryDB::Types::ShardConfiguration

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#replica_countInteger

The number of read replica nodes in this shard.

Returns:

  • (Integer)


3003
3004
3005
3006
3007
3008
# File 'lib/aws-sdk-memorydb/types.rb', line 3003

class ShardConfiguration < Struct.new(
  :slots,
  :replica_count)
  SENSITIVE = []
  include Aws::Structure
end

#slotsString

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.

Returns:

  • (String)


3003
3004
3005
3006
3007
3008
# File 'lib/aws-sdk-memorydb/types.rb', line 3003

class ShardConfiguration < Struct.new(
  :slots,
  :replica_count)
  SENSITIVE = []
  include Aws::Structure
end