class Aws::Budgets::Types::NotificationWithSubscribers

A notification with subscribers. A notification can have one SNS subscriber and up to 10 email subscribers, for a total of 11 subscribers.

@note When making an API call, you may pass NotificationWithSubscribers

data as a hash:

    {
      notification: { # required
        notification_type: "ACTUAL", # required, accepts ACTUAL, FORECASTED
        comparison_operator: "GREATER_THAN", # required, accepts GREATER_THAN, LESS_THAN, EQUAL_TO
        threshold: 1.0, # required
        threshold_type: "PERCENTAGE", # accepts PERCENTAGE, ABSOLUTE_VALUE
        notification_state: "OK", # accepts OK, ALARM
      },
      subscribers: [ # required
        {
          subscription_type: "SNS", # required, accepts SNS, EMAIL
          address: "SubscriberAddress", # required
        },
      ],
    }

@!attribute [rw] notification

The notification that is associated with a budget.
@return [Types::Notification]

@!attribute [rw] subscribers

A list of subscribers who are subscribed to this notification.
@return [Array<Types::Subscriber>]

Constants

SENSITIVE