Struct rusoto_snowball::Notification[][src]

pub struct Notification {
    pub job_states_to_notify: Option<Vec<String>>,
    pub notify_all: Option<bool>,
    pub sns_topic_arn: Option<String>,
}

The Amazon Simple Notification Service (Amazon SNS) notification settings associated with a specific job. The Notification object is returned as a part of the response syntax of the DescribeJob action in the JobMetadata data type.

When the notification settings are defined during job creation, you can choose to notify based on a specific set of job states using the JobStatesToNotify array of strings, or you can specify that you want to have Amazon SNS notifications sent out for all job states with NotifyAll set to true.

Fields

The list of job states that will trigger a notification for this job.

Any change in job state will trigger a notification for this job.

The new SNS TopicArn that you want to associate with this job. You can create Amazon Resource Names (ARNs) for topics by using the CreateTopic Amazon SNS API action.

You can subscribe email addresses to an Amazon SNS topic through the AWS Management Console, or by using the Subscribe AWS Simple Notification Service (SNS) API action.

Trait Implementations

impl Default for Notification
[src]

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

impl Debug for Notification
[src]

Formats the value using the given formatter. Read more

impl Clone for Notification
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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