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)


8291
8292
8293
8294
8295
8296
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 8291

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)


8291
8292
8293
8294
8295
8296
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 8291

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