Struct rusoto_elastictranscoder::Notifications[][src]

pub struct Notifications {
    pub completed: Option<String>,
    pub error: Option<String>,
    pub progressing: Option<String>,
    pub warning: Option<String>,
}

The Amazon Simple Notification Service (Amazon SNS) topic or topics to notify in order to report job status.

To receive notifications, you must also subscribe to the new topic in the Amazon SNS console.

Fields

The Amazon SNS topic that you want to notify when Elastic Transcoder has finished processing the job.

The Amazon SNS topic that you want to notify when Elastic Transcoder encounters an error condition.

The Amazon Simple Notification Service (Amazon SNS) topic that you want to notify when Elastic Transcoder has started to process the job.

The Amazon SNS topic that you want to notify when Elastic Transcoder encounters a warning condition.

Trait Implementations

impl Default for Notifications
[src]

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

impl Debug for Notifications
[src]

Formats the value using the given formatter. Read more

impl Clone for Notifications
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for Notifications
[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