Class: Aws::Connect::Types::DownloadUrlMetadata
- Inherits:
-
Struct
- Object
- Struct
- Aws::Connect::Types::DownloadUrlMetadata
- Includes:
- Structure
- Defined in:
- 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.
6988 6989 6990 6991 6992 6993 |
# File 'lib/aws-sdk-connect/types.rb', line 6988 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.
6988 6989 6990 6991 6992 6993 |
# File 'lib/aws-sdk-connect/types.rb', line 6988 class DownloadUrlMetadata < Struct.new( :url, :url_expiry) SENSITIVE = [] include Aws::Structure end |