You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::Snowball::Types::Notification

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing Notification as input to an Aws::Client method, you can use a vanilla Hash:

{
  sns_topic_arn: "SnsTopicARN",
  job_states_to_notify: ["New"], # accepts New, PreparingAppliance, PreparingShipment, InTransitToCustomer, WithCustomer, InTransitToAWS, WithAWSSortingFacility, WithAWS, InProgress, Complete, Cancelled, Listing, Pending
  notify_all: false,
}

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.

Returned by:

Instance Attribute Summary collapse

Instance Attribute Details

#job_states_to_notifyArray<String>

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

Returns:

  • (Array<String>)

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

#notify_allBoolean

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

Returns:

  • (Boolean)

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

#sns_topic_arnString

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.

Returns:

  • (String)

    The new SNS TopicArn that you want to associate with this job.