Class: Aws::MTurk::Types::NotifyWorkersRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::MTurk::Types::NotifyWorkersRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-mturk/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#message_text ⇒ String
The text of the email message to send.
-
#subject ⇒ String
The subject line of the email message to send.
-
#worker_ids ⇒ Array<String>
A list of Worker IDs you wish to notify.
Instance Attribute Details
#message_text ⇒ String
The text of the email message to send. Can include up to 4,096 characters
1832 1833 1834 1835 1836 1837 1838 |
# File 'lib/aws-sdk-mturk/types.rb', line 1832 class NotifyWorkersRequest < Struct.new( :subject, :message_text, :worker_ids) SENSITIVE = [] include Aws::Structure end |
#subject ⇒ String
The subject line of the email message to send. Can include up to 200 characters.
1832 1833 1834 1835 1836 1837 1838 |
# File 'lib/aws-sdk-mturk/types.rb', line 1832 class NotifyWorkersRequest < Struct.new( :subject, :message_text, :worker_ids) SENSITIVE = [] include Aws::Structure end |
#worker_ids ⇒ Array<String>
A list of Worker IDs you wish to notify. You can notify upto 100 Workers at a time.
1832 1833 1834 1835 1836 1837 1838 |
# File 'lib/aws-sdk-mturk/types.rb', line 1832 class NotifyWorkersRequest < Struct.new( :subject, :message_text, :worker_ids) SENSITIVE = [] include Aws::Structure end |