Class: Aws::ElastiCache::Types::DecreaseReplicaCountMessage

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-elasticache/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 decreased immediately. ApplyImmediately=False is not currently supported.

Returns:

  • (Boolean)


3326
3327
3328
3329
3330
3331
3332
3333
3334
# File 'gems/aws-sdk-elasticache/lib/aws-sdk-elasticache/types.rb', line 3326

class DecreaseReplicaCountMessage < Struct.new(
  :replication_group_id,
  :new_replica_count,
  :replica_configuration,
  :replicas_to_remove,
  :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 Valkey or Redis OSS (cluster mode disabled) replication groups, this is the number of replica nodes in the replication group. For Valkey or Redis OSS (cluster mode enabled) replication groups, this is the number of replica nodes in each of the replication group's node groups.

The minimum number of replicas in a shard or replication group is:

  • Valkey or Redis OSS (cluster mode disabled)

    • If Multi-AZ is enabled: 1

    • If Multi-AZ is not enabled: 0

  • Valkey or Redis OSS (cluster mode enabled): 0 (though you will not be able to failover to a replica if your primary node fails)

Returns:

  • (Integer)


3326
3327
3328
3329
3330
3331
3332
3333
3334
# File 'gems/aws-sdk-elasticache/lib/aws-sdk-elasticache/types.rb', line 3326

class DecreaseReplicaCountMessage < Struct.new(
  :replication_group_id,
  :new_replica_count,
  :replica_configuration,
  :replicas_to_remove,
  :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 Valkey or Redis OSS (cluster mode enabled) replication group. The ConfigureShard has three members: NewReplicaCount, NodeGroupId, and PreferredAvailabilityZones.

Returns:



3326
3327
3328
3329
3330
3331
3332
3333
3334
# File 'gems/aws-sdk-elasticache/lib/aws-sdk-elasticache/types.rb', line 3326

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

#replicas_to_removeArray<String>

A list of the node ids to remove from the replication group or node group (shard).

Returns:

  • (Array<String>)


3326
3327
3328
3329
3330
3331
3332
3333
3334
# File 'gems/aws-sdk-elasticache/lib/aws-sdk-elasticache/types.rb', line 3326

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

#replication_group_idString

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

Returns:

  • (String)


3326
3327
3328
3329
3330
3331
3332
3333
3334
# File 'gems/aws-sdk-elasticache/lib/aws-sdk-elasticache/types.rb', line 3326

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