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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-connect/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)


8018
8019
8020
8021
8022
8023
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 8018

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)


8018
8019
8020
8021
8022
8023
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 8018

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