Class: Aws::DocDB::Types::DeleteDBInstanceMessage
- Inherits:
-
Struct
- Object
- Struct
- Aws::DocDB::Types::DeleteDBInstanceMessage
- 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.
Instance Attribute Summary collapse
-
#db_instance_identifier ⇒ String
The DB instance identifier for the DB instance to be deleted.
Instance Attribute Details
#db_instance_identifier ⇒ String
The DB instance identifier for the DB instance to be deleted. This parameter isn’t case sensitive.
Constraints:
-
Must match the name of an existing DB instance.
^
1969 1970 1971 1972 |
# File 'lib/aws-sdk-docdb/types.rb', line 1969 class DeleteDBInstanceMessage < Struct.new( :db_instance_identifier) include Aws::Structure end |