Class: Aws::Connect::Types::EmailAttachment

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-connect/types.rb

Overview

Information about the email attachment files.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#file_nameString

A case-sensitive name of the attached file being uploaded.

Returns:

  • (String)


8307
8308
8309
8310
8311
8312
# File 'lib/aws-sdk-connect/types.rb', line 8307

class EmailAttachment < Struct.new(
  :file_name,
  :s3_url)
  SENSITIVE = []
  include Aws::Structure
end

#s3_urlString

The pre-signed URLs for the S3 bucket where the email attachment is stored.

Returns:

  • (String)


8307
8308
8309
8310
8311
8312
# File 'lib/aws-sdk-connect/types.rb', line 8307

class EmailAttachment < Struct.new(
  :file_name,
  :s3_url)
  SENSITIVE = []
  include Aws::Structure
end