Class: Aws::Connect::Types::UploadUrlMetadata
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::Connect::Types::UploadUrlMetadata
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-connect/types.rb
 
Overview
Fields required when uploading an attached file.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #headers_to_include  ⇒ Hash<String,String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A map of headers that should be provided when uploading the attached file.
 - 
  
    
      #url  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A pre-signed S3 URL that should be used for uploading the attached file.
 - 
  
    
      #url_expiry  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The expiration time of the URL in ISO timestamp.
 
Instance Attribute Details
#headers_to_include ⇒ Hash<String,String>
A map of headers that should be provided when uploading the attached file.
      26238 26239 26240 26241 26242 26243 26244  | 
    
      # File 'lib/aws-sdk-connect/types.rb', line 26238 class UploadUrlMetadata < Struct.new( :url, :url_expiry, :headers_to_include) SENSITIVE = [] include Aws::Structure end  | 
  
#url ⇒ String
A pre-signed S3 URL that should be used for uploading the attached file.
      26238 26239 26240 26241 26242 26243 26244  | 
    
      # File 'lib/aws-sdk-connect/types.rb', line 26238 class UploadUrlMetadata < Struct.new( :url, :url_expiry, :headers_to_include) SENSITIVE = [] include Aws::Structure end  | 
  
#url_expiry ⇒ String
The expiration time of the URL in ISO timestamp. It’s specified in ISO 8601 format: ‘yyyy-MM-ddThh:mm:ss.SSSZ`. For example, `2019-11-08T02:41:28.172Z`.
      26238 26239 26240 26241 26242 26243 26244  | 
    
      # File 'lib/aws-sdk-connect/types.rb', line 26238 class UploadUrlMetadata < Struct.new( :url, :url_expiry, :headers_to_include) SENSITIVE = [] include Aws::Structure end  |