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.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#dataString

The content of the attachment file.

Returns:

  • (String)


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

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

#file_nameString

The name of the attachment file.

Returns:

  • (String)


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

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