Class: Aws::DocDB::Types::DeleteDBInstanceMessage

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

Overview

Note:

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

{
  db_instance_identifier: "String", # required
}

Represents the input to DeleteDBInstance.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#db_instance_identifierString

The instance identifier for the instance to be deleted. This parameter isn't case sensitive.

Constraints:

  • Must match the name of an existing instance.

^

Returns:

  • (String)


2549
2550
2551
2552
2553
# File 'lib/aws-sdk-docdb/types.rb', line 2549

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