Class: Aws::DAX::Types::IncreaseReplicationFactorRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::DAX::Types::IncreaseReplicationFactorRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-dax/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#availability_zones ⇒ Array<String>
The Availability Zones (AZs) in which the cluster nodes will be created.
-
#cluster_name ⇒ String
The name of the DAX cluster that will receive additional nodes.
-
#new_replication_factor ⇒ Integer
The new number of nodes for the DAX cluster.
Instance Attribute Details
#availability_zones ⇒ Array<String>
The Availability Zones (AZs) in which the cluster nodes will be created. All nodes belonging to the cluster are placed in these Availability Zones. Use this parameter if you want to distribute the nodes across multiple AZs.
880 881 882 883 884 885 886 |
# File 'lib/aws-sdk-dax/types.rb', line 880 class IncreaseReplicationFactorRequest < Struct.new( :cluster_name, :new_replication_factor, :availability_zones) SENSITIVE = [] include Aws::Structure end |
#cluster_name ⇒ String
The name of the DAX cluster that will receive additional nodes.
880 881 882 883 884 885 886 |
# File 'lib/aws-sdk-dax/types.rb', line 880 class IncreaseReplicationFactorRequest < Struct.new( :cluster_name, :new_replication_factor, :availability_zones) SENSITIVE = [] include Aws::Structure end |
#new_replication_factor ⇒ Integer
The new number of nodes for the DAX cluster.
880 881 882 883 884 885 886 |
# File 'lib/aws-sdk-dax/types.rb', line 880 class IncreaseReplicationFactorRequest < Struct.new( :cluster_name, :new_replication_factor, :availability_zones) SENSITIVE = [] include Aws::Structure end |