Class: Aws::Connect::Types::CompleteAttachedFileUploadRequest
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::Connect::Types::CompleteAttachedFileUploadRequest
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-connect/types.rb
 
Overview
Request to CompleteAttachedFileUpload API
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #associated_resource_arn  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The resource to which the attached file is (being) uploaded to.
 - 
  
    
      #file_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The unique identifier of the attached file resource.
 - 
  
    
      #instance_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The unique identifier of the Amazon Connect instance.
 
Instance Attribute Details
#associated_resource_arn ⇒ String
The resource to which the attached file is (being) uploaded to. The supported resources are [Cases] and [Email].
<note markdown=“1”> This value must be a valid ARN.
</note>
[1]: docs.aws.amazon.com/connect/latest/adminguide/cases.html [2]: docs.aws.amazon.com/connect/latest/adminguide/setup-email-channel.html
      2315 2316 2317 2318 2319 2320 2321  | 
    
      # File 'lib/aws-sdk-connect/types.rb', line 2315 class CompleteAttachedFileUploadRequest < Struct.new( :instance_id, :file_id, :associated_resource_arn) SENSITIVE = [] include Aws::Structure end  | 
  
#file_id ⇒ String
The unique identifier of the attached file resource.
      2315 2316 2317 2318 2319 2320 2321  | 
    
      # File 'lib/aws-sdk-connect/types.rb', line 2315 class CompleteAttachedFileUploadRequest < Struct.new( :instance_id, :file_id, :associated_resource_arn) SENSITIVE = [] include Aws::Structure end  | 
  
#instance_id ⇒ String
The unique identifier of the Amazon Connect instance.
      2315 2316 2317 2318 2319 2320 2321  | 
    
      # File 'lib/aws-sdk-connect/types.rb', line 2315 class CompleteAttachedFileUploadRequest < Struct.new( :instance_id, :file_id, :associated_resource_arn) SENSITIVE = [] include Aws::Structure end  |