Class: Aws::RDS::Types::FailoverDBClusterMessage
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::RDS::Types::FailoverDBClusterMessage
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-rds/types.rb
 
Overview
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #db_cluster_identifier  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The identifier of the DB cluster to force a failover for.
 - 
  
    
      #target_db_instance_identifier  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The name of the DB instance to promote to the primary DB instance.
 
Instance Attribute Details
#db_cluster_identifier ⇒ String
The identifier of the DB cluster to force a failover for. This parameter isn’t case-sensitive.
Constraints:
- 
Must match the identifier of an existing DB cluster.
 
^
      16039 16040 16041 16042 16043 16044  | 
    
      # File 'lib/aws-sdk-rds/types.rb', line 16039 class FailoverDBClusterMessage < Struct.new( :db_cluster_identifier, :target_db_instance_identifier) SENSITIVE = [] include Aws::Structure end  | 
  
#target_db_instance_identifier ⇒ String
The name of the DB instance to promote to the primary DB instance.
Specify the DB instance identifier for an Aurora Replica or a Multi-AZ readable standby in the DB cluster, for example ‘mydbcluster-replica1`.
This setting isn’t supported for RDS for MySQL Multi-AZ DB clusters.
      16039 16040 16041 16042 16043 16044  | 
    
      # File 'lib/aws-sdk-rds/types.rb', line 16039 class FailoverDBClusterMessage < Struct.new( :db_cluster_identifier, :target_db_instance_identifier) SENSITIVE = [] include Aws::Structure end  |