Class: Aws::Support::Types::AttachmentDetails

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-support/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

Instance Attribute Details

#attachment_idString

The ID of the attachment.

Returns:

  • (String)


143
144
145
146
147
148
# File 'gems/aws-sdk-support/lib/aws-sdk-support/types.rb', line 143

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

#file_nameString

The file name of the attachment.

Returns:

  • (String)


143
144
145
146
147
148
# File 'gems/aws-sdk-support/lib/aws-sdk-support/types.rb', line 143

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