Class: Aws::WorkDocs::Types::NotificationOptions

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

Instance Attribute Details

#email_messageString

Text value to be included in the email body.

Returns:

  • (String)


2216
2217
2218
2219
2220
2221
# File 'gems/aws-sdk-workdocs/lib/aws-sdk-workdocs/types.rb', line 2216

class NotificationOptions < Struct.new(
  :send_email,
  :email_message)
  SENSITIVE = [:email_message]
  include Aws::Structure
end

#send_emailBoolean

Boolean value to indicate an email notification should be sent to the recipients.

Returns:

  • (Boolean)


2216
2217
2218
2219
2220
2221
# File 'gems/aws-sdk-workdocs/lib/aws-sdk-workdocs/types.rb', line 2216

class NotificationOptions < Struct.new(
  :send_email,
  :email_message)
  SENSITIVE = [:email_message]
  include Aws::Structure
end