Class: Aws::Support::Types::Attachment

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-support/lib/aws-sdk-support/types.rb

Overview

An attachment to a case communication. The attachment consists of the file name and the content of the file. Each attachment file size should not exceed 5 MB. File types that are supported include the following: pdf, jpeg,.doc, .log, .text

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#dataString

The content of the attachment file.

Returns:

  • (String)


124
125
126
127
128
129
# File 'gems/aws-sdk-support/lib/aws-sdk-support/types.rb', line 124

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

#file_nameString

The name of the attachment file.

Returns:

  • (String)


124
125
126
127
128
129
# File 'gems/aws-sdk-support/lib/aws-sdk-support/types.rb', line 124

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