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
A value that indicates 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.
^
19001 19002 19003 19004 19005 19006 |
# File 'lib/aws-sdk-rds/types.rb', line 19001 class RebootDBInstanceMessage < Struct.new( :db_instance_identifier, :force_failover) SENSITIVE = [] include Aws::Structure end |
#force_failover ⇒ Boolean
A value that indicates 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.
19001 19002 19003 19004 19005 19006 |
# File 'lib/aws-sdk-rds/types.rb', line 19001 class RebootDBInstanceMessage < Struct.new( :db_instance_identifier, :force_failover) SENSITIVE = [] include Aws::Structure end |