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

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

Overview

Constant Summary collapse

SENSITIVE =
[]

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)


21378
21379
21380
21381
21382
21383
# File 'gems/aws-sdk-rds/lib/aws-sdk-rds/types.rb', line 21378

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

#force_failoverBoolean

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.

Returns:

  • (Boolean)


21378
21379
21380
21381
21382
21383
# File 'gems/aws-sdk-rds/lib/aws-sdk-rds/types.rb', line 21378

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