Class: Aws::Notifications::Types::NotificationEventAttachment

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

Overview

A file attached to a notification event.

Constant Summary collapse

SENSITIVE =
[:attachment_download_url]

Instance Attribute Summary collapse

Instance Attribute Details

#attachment_download_urlString

A temporary URL for downloading the attachment. The URL expires shortly after it's issued.

Returns:

  • (String)


2798
2799
2800
2801
2802
2803
2804
# File 'gems/aws-sdk-notifications/lib/aws-sdk-notifications/types.rb', line 2798

class NotificationEventAttachment < Struct.new(
  :display_name,
  :attachment_download_url,
  :content_type)
  SENSITIVE = [:attachment_download_url]
  include Aws::Structure
end

#content_typeString

The MIME content type of the attachment, for example application/pdf.

Returns:

  • (String)


2798
2799
2800
2801
2802
2803
2804
# File 'gems/aws-sdk-notifications/lib/aws-sdk-notifications/types.rb', line 2798

class NotificationEventAttachment < Struct.new(
  :display_name,
  :attachment_download_url,
  :content_type)
  SENSITIVE = [:attachment_download_url]
  include Aws::Structure
end

#display_nameString

The name of the attachment that recipients see.

Returns:

  • (String)


2798
2799
2800
2801
2802
2803
2804
# File 'gems/aws-sdk-notifications/lib/aws-sdk-notifications/types.rb', line 2798

class NotificationEventAttachment < Struct.new(
  :display_name,
  :attachment_download_url,
  :content_type)
  SENSITIVE = [:attachment_download_url]
  include Aws::Structure
end