Class: Aws::RDS::Types::RebootDBInstanceMessage

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-rds/types.rb

Overview

Note:

When making an API call, you may pass RebootDBInstanceMessage data as a hash:

{
  db_instance_identifier: "String", # required
  force_failover: false,
}

Instance Attribute Summary collapse

Instance Attribute Details

#db_instance_identifierString

The DB instance identifier. This parameter is stored as a lowercase string.

Constraints:

  • Must match the identifier of an existing DBInstance.

^

Returns:

  • (String)


12350
12351
12352
12353
12354
# File 'lib/aws-sdk-rds/types.rb', line 12350

class RebootDBInstanceMessage < Struct.new(
  :db_instance_identifier,
  :force_failover)
  include Aws::Structure
end

#force_failoverBoolean

When ‘true`, the reboot is conducted through a MultiAZ failover.

Constraint: You can’t specify ‘true` if the instance is not configured for MultiAZ.

Returns:

  • (Boolean)


12350
12351
12352
12353
12354
# File 'lib/aws-sdk-rds/types.rb', line 12350

class RebootDBInstanceMessage < Struct.new(
  :db_instance_identifier,
  :force_failover)
  include Aws::Structure
end