Class: Aws::Support::Types::AttachmentDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::Support::Types::AttachmentDetails
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-support/types.rb
Overview
The file name and ID of an attachment to a case communication. You can use the ID to retrieve the attachment with the DescribeAttachment operation.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#attachment_id ⇒ String
The ID of the attachment.
-
#file_name ⇒ String
The file name of the attachment.
Instance Attribute Details
#attachment_id ⇒ String
The ID of the attachment.
145 146 147 148 149 150 |
# File 'lib/aws-sdk-support/types.rb', line 145 class AttachmentDetails < Struct.new( :attachment_id, :file_name) SENSITIVE = [] include Aws::Structure end |
#file_name ⇒ String
The file name of the attachment.
145 146 147 148 149 150 |
# File 'lib/aws-sdk-support/types.rb', line 145 class AttachmentDetails < Struct.new( :attachment_id, :file_name) SENSITIVE = [] include Aws::Structure end |