Class: Aws::Connect::Types::DownloadUrlMetadata
- Inherits:
-
Struct
- Object
- Struct
- Aws::Connect::Types::DownloadUrlMetadata
- Defined in:
- gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb
Overview
Metadata used to download the attached file.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#url ⇒ String
A pre-signed URL that should be used to download the attached file.
-
#url_expiry ⇒ String
The expiration time of the URL in ISO timestamp.
Instance Attribute Details
#url ⇒ String
A pre-signed URL that should be used to download the attached file.
7107 7108 7109 7110 7111 7112 |
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 7107 class DownloadUrlMetadata < Struct.new( :url, :url_expiry) 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.
7107 7108 7109 7110 7111 7112 |
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 7107 class DownloadUrlMetadata < Struct.new( :url, :url_expiry) SENSITIVE = [] include Aws::Structure end |