Class: Aws::Support::Types::Attachment
- Inherits:
-
Struct
- Object
- Struct
- Aws::Support::Types::Attachment
- Includes:
- Aws::Structure
- Defined in:
- 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
-
#data ⇒ String
The content of the attachment file.
-
#file_name ⇒ String
The name of the attachment file.
Instance Attribute Details
#data ⇒ String
The content of the attachment file.
124 125 126 127 128 129 |
# File 'lib/aws-sdk-support/types.rb', line 124 class Attachment < Struct.new( :file_name, :data) SENSITIVE = [] include Aws::Structure end |
#file_name ⇒ String
The name of the attachment file.
124 125 126 127 128 129 |
# File 'lib/aws-sdk-support/types.rb', line 124 class Attachment < Struct.new( :file_name, :data) SENSITIVE = [] include Aws::Structure end |