Class: Aws::DAX::Types::DecreaseReplicationFactorRequest
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::DAX::Types::DecreaseReplicationFactorRequest
 
- 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 Zone(s) from which to remove nodes. 
- 
  
    
      #cluster_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The name of the DAX cluster from which you want to remove nodes. 
- 
  
    
      #new_replication_factor  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The new number of nodes for the DAX cluster. 
- 
  
    
      #node_ids_to_remove  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The unique identifiers of the nodes to be removed from the cluster. 
Instance Attribute Details
#availability_zones ⇒ Array<String>
The Availability Zone(s) from which to remove nodes.
| 393 394 395 396 397 398 399 400 | # File 'lib/aws-sdk-dax/types.rb', line 393 class DecreaseReplicationFactorRequest < Struct.new( :cluster_name, :new_replication_factor, :availability_zones, :node_ids_to_remove) SENSITIVE = [] include Aws::Structure end | 
#cluster_name ⇒ String
The name of the DAX cluster from which you want to remove nodes.
| 393 394 395 396 397 398 399 400 | # File 'lib/aws-sdk-dax/types.rb', line 393 class DecreaseReplicationFactorRequest < Struct.new( :cluster_name, :new_replication_factor, :availability_zones, :node_ids_to_remove) SENSITIVE = [] include Aws::Structure end | 
#new_replication_factor ⇒ Integer
The new number of nodes for the DAX cluster.
| 393 394 395 396 397 398 399 400 | # File 'lib/aws-sdk-dax/types.rb', line 393 class DecreaseReplicationFactorRequest < Struct.new( :cluster_name, :new_replication_factor, :availability_zones, :node_ids_to_remove) SENSITIVE = [] include Aws::Structure end | 
#node_ids_to_remove ⇒ Array<String>
The unique identifiers of the nodes to be removed from the cluster.
| 393 394 395 396 397 398 399 400 | # File 'lib/aws-sdk-dax/types.rb', line 393 class DecreaseReplicationFactorRequest < Struct.new( :cluster_name, :new_replication_factor, :availability_zones, :node_ids_to_remove) SENSITIVE = [] include Aws::Structure end |