Class: Aws::WorkDocs::Types::NotificationOptions
- Inherits:
-
Struct
- Object
- Struct
- Aws::WorkDocs::Types::NotificationOptions
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-workdocs/types.rb
Overview
Set of options which defines notification preferences of given action.
Constant Summary collapse
- SENSITIVE =
[:email_message]
Instance Attribute Summary collapse
-
#email_message ⇒ String
Text value to be included in the email body.
-
#send_email ⇒ Boolean
Boolean value to indicate an email notification should be sent to the recipients.
Instance Attribute Details
#email_message ⇒ String
Text value to be included in the email body.
2216 2217 2218 2219 2220 2221 |
# File 'lib/aws-sdk-workdocs/types.rb', line 2216 class NotificationOptions < Struct.new( :send_email, :email_message) SENSITIVE = [:email_message] include Aws::Structure end |
#send_email ⇒ Boolean
Boolean value to indicate an email notification should be sent to the recipients.
2216 2217 2218 2219 2220 2221 |
# File 'lib/aws-sdk-workdocs/types.rb', line 2216 class NotificationOptions < Struct.new( :send_email, :email_message) SENSITIVE = [:email_message] include Aws::Structure end |