Class: Aws::ConnectParticipant::Types::GetAttachmentResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::ConnectParticipant::Types::GetAttachmentResponse
- Defined in:
- gems/aws-sdk-connectparticipant/lib/aws-sdk-connectparticipant/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#attachment_size_in_bytes ⇒ Integer
The size of the attachment in bytes.
-
#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].
-
#url_expiry ⇒ String
The expiration time of the URL in ISO timestamp.
Instance Attribute Details
#attachment_size_in_bytes ⇒ Integer
The size of the attachment in bytes.
317 318 319 320 321 322 323 |
# File 'gems/aws-sdk-connectparticipant/lib/aws-sdk-connectparticipant/types.rb', line 317 class GetAttachmentResponse < Struct.new( :url, :url_expiry, :attachment_size_in_bytes) 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.
317 318 319 320 321 322 323 |
# File 'gems/aws-sdk-connectparticipant/lib/aws-sdk-connectparticipant/types.rb', line 317 class GetAttachmentResponse < Struct.new( :url, :url_expiry, :attachment_size_in_bytes) 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.
317 318 319 320 321 322 323 |
# File 'gems/aws-sdk-connectparticipant/lib/aws-sdk-connectparticipant/types.rb', line 317 class GetAttachmentResponse < Struct.new( :url, :url_expiry, :attachment_size_in_bytes) SENSITIVE = [] include Aws::Structure end |