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

Class: Aws::Budgets::Types::UpdateSubscriberRequest

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

Overview

Note:

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

{
  account_id: "AccountId", # required
  budget_name: "BudgetName", # required
  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
  },
  old_subscriber: { # required
    subscription_type: "SNS", # required, accepts SNS, EMAIL
    address: "SubscriberAddress", # required
  },
  new_subscriber: { # required
    subscription_type: "SNS", # required, accepts SNS, EMAIL
    address: "SubscriberAddress", # required
  },
}

Request of UpdateSubscriber

Instance Attribute Summary collapse

Instance Attribute Details

#account_idString

The accountId that is associated with the budget whose subscriber you want to update.

Returns:

  • (String)

    The accountId that is associated with the budget whose subscriber you want to update.

#budget_nameString

The name of the budget whose subscriber you want to update.

Returns:

  • (String)

    The name of the budget whose subscriber you want to update.

#new_subscriberTypes::Subscriber

The updated subscriber that is associated with a budget notification.

Returns:

  • (Types::Subscriber)

    The updated subscriber that is associated with a budget notification.

#notificationTypes::Notification

The notification whose subscriber you want to update.

Returns:

#old_subscriberTypes::Subscriber

The previous subscriber that is associated with a budget notification.

Returns:

  • (Types::Subscriber)

    The previous subscriber that is associated with a budget notification.