Class: Aws::RDS::Types::RebootDBInstanceMessage
- Inherits:
-
Struct
- Object
- Struct
- Aws::RDS::Types::RebootDBInstanceMessage
- Defined in:
- gems/aws-sdk-rds/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.
^
22030 22031 22032 22033 22034 22035 |
# File 'gems/aws-sdk-rds/lib/aws-sdk-rds/types.rb', line 22030 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.
22030 22031 22032 22033 22034 22035 |
# File 'gems/aws-sdk-rds/lib/aws-sdk-rds/types.rb', line 22030 class RebootDBInstanceMessage < Struct.new( :db_instance_identifier, :force_failover) SENSITIVE = [] include Aws::Structure end |