Class: Aws::Notifications::Types::NotificationEventAttachment
- Inherits:
-
Struct
- Object
- Struct
- Aws::Notifications::Types::NotificationEventAttachment
- 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
-
#attachment_download_url ⇒ String
A temporary URL for downloading the attachment.
-
#content_type ⇒ String
The MIME content type of the attachment, for example
application/pdf. -
#display_name ⇒ String
The name of the attachment that recipients see.
Instance Attribute Details
#attachment_download_url ⇒ String
A temporary URL for downloading the attachment. The URL expires shortly after it's issued.
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_type ⇒ String
The MIME content type of the attachment, for example
application/pdf.
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_name ⇒ String
The name of the attachment that recipients see.
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 |