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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-memorydb/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)


2664
2665
2666
2667
2668
2669
# File 'gems/aws-sdk-memorydb/lib/aws-sdk-memorydb/types.rb', line 2664

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)


2664
2665
2666
2667
2668
2669
# File 'gems/aws-sdk-memorydb/lib/aws-sdk-memorydb/types.rb', line 2664

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