Class: Aws::RDS::Types::RebootDBInstanceMessage
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::RDS::Types::RebootDBInstanceMessage
 
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-rds/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #db_instance_identifier  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The DB instance identifier. 
- 
  
    
      #force_failover  ⇒ Boolean 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Specifies whether the reboot is conducted through a Multi-AZ failover. 
Instance Attribute Details
#db_instance_identifier ⇒ String
The DB instance identifier. This parameter is stored as a lowercase string.
Constraints:
- 
Must match the identifier of an existing DBInstance. 
^
| 21568 21569 21570 21571 21572 21573 | # File 'lib/aws-sdk-rds/types.rb', line 21568 class RebootDBInstanceMessage < Struct.new( :db_instance_identifier, :force_failover) SENSITIVE = [] include Aws::Structure end | 
#force_failover ⇒ Boolean
Specifies whether the reboot is conducted through a Multi-AZ failover.
Constraint: You can’t enable force failover if the instance isn’t configured for Multi-AZ.
| 21568 21569 21570 21571 21572 21573 | # File 'lib/aws-sdk-rds/types.rb', line 21568 class RebootDBInstanceMessage < Struct.new( :db_instance_identifier, :force_failover) SENSITIVE = [] include Aws::Structure end |