Class: Aws::ElastiCache::Types::IncreaseReplicaCountMessage

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-elasticache/types.rb

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#apply_immediatelyBoolean

If ‘True`, the number of replica nodes is increased immediately. `ApplyImmediately=False` is not currently supported.

Returns:

  • (Boolean)


5446
5447
5448
5449
5450
5451
5452
5453
# File 'lib/aws-sdk-elasticache/types.rb', line 5446

class IncreaseReplicaCountMessage < Struct.new(
  :replication_group_id,
  :new_replica_count,
  :replica_configuration,
  :apply_immediately)
  SENSITIVE = []
  include Aws::Structure
end

#new_replica_countInteger

The number of read replica nodes you want at the completion of this operation. For Redis (cluster mode disabled) replication groups, this is the number of replica nodes in the replication group. For Redis (cluster mode enabled) replication groups, this is the number of replica nodes in each of the replication group’s node groups.

Returns:

  • (Integer)


5446
5447
5448
5449
5450
5451
5452
5453
# File 'lib/aws-sdk-elasticache/types.rb', line 5446

class IncreaseReplicaCountMessage < Struct.new(
  :replication_group_id,
  :new_replica_count,
  :replica_configuration,
  :apply_immediately)
  SENSITIVE = []
  include Aws::Structure
end

#replica_configurationArray<Types::ConfigureShard>

A list of ‘ConfigureShard` objects that can be used to configure each shard in a Redis (cluster mode enabled) replication group. The `ConfigureShard` has three members: `NewReplicaCount`, `NodeGroupId`, and `PreferredAvailabilityZones`.

Returns:



5446
5447
5448
5449
5450
5451
5452
5453
# File 'lib/aws-sdk-elasticache/types.rb', line 5446

class IncreaseReplicaCountMessage < Struct.new(
  :replication_group_id,
  :new_replica_count,
  :replica_configuration,
  :apply_immediately)
  SENSITIVE = []
  include Aws::Structure
end

#replication_group_idString

The id of the replication group to which you want to add replica nodes.

Returns:

  • (String)


5446
5447
5448
5449
5450
5451
5452
5453
# File 'lib/aws-sdk-elasticache/types.rb', line 5446

class IncreaseReplicaCountMessage < Struct.new(
  :replication_group_id,
  :new_replica_count,
  :replica_configuration,
  :apply_immediately)
  SENSITIVE = []
  include Aws::Structure
end