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.
^
21881 21882 21883 21884 21885 21886 |
# File 'lib/aws-sdk-rds/types.rb', line 21881 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.
21881 21882 21883 21884 21885 21886 |
# File 'lib/aws-sdk-rds/types.rb', line 21881 class RebootDBInstanceMessage < Struct.new( :db_instance_identifier, :force_failover) SENSITIVE = [] include Aws::Structure end |