Class: Aws::ConnectParticipant::Types::UploadMetadata
- Inherits:
-
Struct
- Object
- Struct
- Aws::ConnectParticipant::Types::UploadMetadata
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-connectparticipant/types.rb
Overview
Fields to be used while uploading the attachment.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#headers_to_include ⇒ Hash<String,String>
The headers to be provided while uploading the file to the URL.
-
#url ⇒ String
This is the pre-signed URL that can be used for uploading the file to Amazon S3 when used in response to [StartAttachmentUpload].
-
#url_expiry ⇒ String
The expiration time of the URL in ISO timestamp.
Instance Attribute Details
#headers_to_include ⇒ Hash<String,String>
The headers to be provided while uploading the file to the URL.
811 812 813 814 815 816 817 |
# File 'lib/aws-sdk-connectparticipant/types.rb', line 811 class UploadMetadata < Struct.new( :url, :url_expiry, :headers_to_include) SENSITIVE = [] include Aws::Structure end |
#url ⇒ String
This is the pre-signed URL that can be used for uploading the file to Amazon S3 when used in response to [StartAttachmentUpload].
[1]: docs.aws.amazon.com/connect-participant/latest/APIReference/API_StartAttachmentUpload.html
811 812 813 814 815 816 817 |
# File 'lib/aws-sdk-connectparticipant/types.rb', line 811 class UploadMetadata < 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.
811 812 813 814 815 816 817 |
# File 'lib/aws-sdk-connectparticipant/types.rb', line 811 class UploadMetadata < Struct.new( :url, :url_expiry, :headers_to_include) SENSITIVE = [] include Aws::Structure end |