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

Class: Aws::DAX::Types::DecreaseReplicationFactorRequest

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

Overview

Note:

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

{
  cluster_name: "String", # required
  new_replication_factor: 1, # required
  availability_zones: ["String"],
  node_ids_to_remove: ["String"],
}

Instance Attribute Summary collapse

Instance Attribute Details

#availability_zonesArray<String>

The Availability Zone(s) from which to remove nodes.

Returns:

  • (Array<String>)

    The Availability Zone(s) from which to remove nodes.

#cluster_nameString

The name of the DAX cluster from which you want to remove nodes.

Returns:

  • (String)

    The name of the DAX cluster from which you want to remove nodes.

#new_replication_factorInteger

The new number of nodes for the DAX cluster.

Returns:

  • (Integer)

    The new number of nodes for the DAX cluster.

#node_ids_to_removeArray<String>

The unique identifiers of the nodes to be removed from the cluster.

Returns:

  • (Array<String>)

    The unique identifiers of the nodes to be removed from the cluster.