Class: Aws::Connect::Types::AttachedFileError
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::Connect::Types::AttachedFileError
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-connect/types.rb
 
Overview
Error describing a failure to retrieve attached file metadata through BatchGetAttachedFileMetadata action.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #error_code  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Status code describing the failure.
 - 
  
    
      #error_message  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Why the attached file couldn’t be retrieved.
 - 
  
    
      #file_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The unique identifier of the attached file resource.
 
Instance Attribute Details
#error_code ⇒ String
Status code describing the failure.
      1338 1339 1340 1341 1342 1343 1344  | 
    
      # File 'lib/aws-sdk-connect/types.rb', line 1338 class AttachedFileError < Struct.new( :error_code, :error_message, :file_id) SENSITIVE = [] include Aws::Structure end  | 
  
#error_message ⇒ String
Why the attached file couldn’t be retrieved.
      1338 1339 1340 1341 1342 1343 1344  | 
    
      # File 'lib/aws-sdk-connect/types.rb', line 1338 class AttachedFileError < Struct.new( :error_code, :error_message, :file_id) SENSITIVE = [] include Aws::Structure end  | 
  
#file_id ⇒ String
The unique identifier of the attached file resource.
      1338 1339 1340 1341 1342 1343 1344  | 
    
      # File 'lib/aws-sdk-connect/types.rb', line 1338 class AttachedFileError < Struct.new( :error_code, :error_message, :file_id) SENSITIVE = [] include Aws::Structure end  |