Class: Aws::LexModelsV2::Types::DeleteImportResponse
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::LexModelsV2::Types::DeleteImportResponse
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-lexmodelsv2/types.rb
 
Overview
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #import_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The unique identifier of the deleted import.
 - 
  
    
      #import_status  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The current status of the deletion.
 
Instance Attribute Details
#import_id ⇒ String
The unique identifier of the deleted import.
      5340 5341 5342 5343 5344 5345  | 
    
      # File 'lib/aws-sdk-lexmodelsv2/types.rb', line 5340 class DeleteImportResponse < Struct.new( :import_id, :import_status) SENSITIVE = [] include Aws::Structure end  | 
  
#import_status ⇒ String
The current status of the deletion. When the deletion is complete, the import will no longer be returned by the [ListImports] operation and calls to the [DescribeImport] operation with the import identifier will fail.
[1]: docs.aws.amazon.com/lexv2/latest/APIReference/API_ListImports.html [2]: docs.aws.amazon.com/lexv2/latest/APIReference/API_DescribeImport.html
      5340 5341 5342 5343 5344 5345  | 
    
      # File 'lib/aws-sdk-lexmodelsv2/types.rb', line 5340 class DeleteImportResponse < Struct.new( :import_id, :import_status) SENSITIVE = [] include Aws::Structure end  |