Class: Aws::DocDB::Types::RebootDBInstanceMessage

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

Overview

Represents the input to RebootDBInstance.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#db_instance_identifierString

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

Constraints:

  • Must match the identifier of an existing DBInstance.

^

Returns:

  • (String)


4935
4936
4937
4938
4939
4940
# File 'gems/aws-sdk-docdb/lib/aws-sdk-docdb/types.rb', line 4935

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

#force_failoverBoolean

When true, the reboot is conducted through a Multi-AZ failover.

Constraint: You can't specify true if the instance is not configured for Multi-AZ.

Returns:

  • (Boolean)


4935
4936
4937
4938
4939
4940
# File 'gems/aws-sdk-docdb/lib/aws-sdk-docdb/types.rb', line 4935

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