Class: Aws::DocDB::Types::DeleteDBInstanceMessage
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::DocDB::Types::DeleteDBInstanceMessage
 
- Defined in:
- gems/aws-sdk-docdb/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.
^
| 2605 2606 2607 2608 2609 | # File 'gems/aws-sdk-docdb/lib/aws-sdk-docdb/types.rb', line 2605 class DeleteDBInstanceMessage < Struct.new( :db_instance_identifier) SENSITIVE = [] include Aws::Structure end |