Class: Aws::Connect::Types::DownloadUrlMetadata

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#urlString

A pre-signed URL that should be used to download the attached file.

Returns:

  • (String)


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_expiryString

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.

Returns:

  • (String)


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