You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

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

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing IncreaseReplicaCountMessage as input to an Aws::Client method, you can use a vanilla Hash:

{
  replication_group_id: "String", # required
  new_replica_count: 1,
  replica_configuration: [
    {
      node_group_id: "AllowedNodeGroupId", # required
      new_replica_count: 1, # required
      preferred_availability_zones: ["String"],
      preferred_outpost_arns: ["String"],
    },
  ],
  apply_immediately: false, # required
}

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)

    If True, the number of replica nodes is increased immediately.

#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)

    The number of read replica nodes you want at the completion of this operation.

#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:

  • (Array<Types::ConfigureShard>)

    A list of ConfigureShard objects that can be used to configure each shard in a Redis (cluster mode enabled) replication group.

#replication_group_idString

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

Returns:

  • (String)

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