Class: Aws::LexModelsV2::Types::DeleteExportResponse
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::LexModelsV2::Types::DeleteExportResponse
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-lexmodelsv2/types.rb
 
Overview
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #export_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The unique identifier of the deleted export.
 - 
  
    
      #export_status  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The current status of the deletion.
 
Instance Attribute Details
#export_id ⇒ String
The unique identifier of the deleted export.
      5303 5304 5305 5306 5307 5308  | 
    
      # File 'lib/aws-sdk-lexmodelsv2/types.rb', line 5303 class DeleteExportResponse < Struct.new( :export_id, :export_status) SENSITIVE = [] include Aws::Structure end  | 
  
#export_status ⇒ String
The current status of the deletion. When the deletion is complete, the export will no longer be returned by the [ListExports] operation and calls to the [ DescribeExport] operation with the export identifier will fail.
[1]: docs.aws.amazon.com/lexv2/latest/APIReference/API_ListExports.html [2]: docs.aws.amazon.com/lexv2/latest/APIReference/API_DescribeExport.html
      5303 5304 5305 5306 5307 5308  | 
    
      # File 'lib/aws-sdk-lexmodelsv2/types.rb', line 5303 class DeleteExportResponse < Struct.new( :export_id, :export_status) SENSITIVE = [] include Aws::Structure end  |