Struct rusoto_mturk::NotifyWorkersRequest[][src]

pub struct NotifyWorkersRequest {
    pub message_text: String,
    pub subject: String,
    pub worker_ids: Vec<String>,
}

Fields

The text of the email message to send. Can include up to 4,096 characters

The subject line of the email message to send. Can include up to 200 characters.

A list of Worker IDs you wish to notify. You can notify upto 100 Workers at a time.

Trait Implementations

impl Default for NotifyWorkersRequest
[src]

Returns the "default value" for a type. Read more

impl Debug for NotifyWorkersRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for NotifyWorkersRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for NotifyWorkersRequest
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations