Class: Aws::Neptune::Types::RebootDBInstanceMessage

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-neptune/lib/aws-sdk-neptune/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)


7103
7104
7105
7106
7107
7108
# File 'gems/aws-sdk-neptune/lib/aws-sdk-neptune/types.rb', line 7103

class RebootDBInstanceMessage < Struct.new(
  :db_instance_identifier,
  :force_failover)
  SENSITIVE = []
  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)


7103
7104
7105
7106
7107
7108
# File 'gems/aws-sdk-neptune/lib/aws-sdk-neptune/types.rb', line 7103

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