Class: Aws::DocDB::Types::DeleteDBInstanceMessage
- Inherits:
-
Struct
- Object
- Struct
- Aws::DocDB::Types::DeleteDBInstanceMessage
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-docdb/types.rb
Overview
Represents the input to DeleteDBInstance.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#db_instance_identifier ⇒ String
The instance identifier for the instance to be deleted.
Instance Attribute Details
#db_instance_identifier ⇒ String
The instance identifier for the instance to be deleted. This parameter isn’t case sensitive.
Constraints:
-
Must match the name of an existing instance.
^
2447 2448 2449 2450 2451 |
# File 'lib/aws-sdk-docdb/types.rb', line 2447 class DeleteDBInstanceMessage < Struct.new( :db_instance_identifier) SENSITIVE = [] include Aws::Structure end |