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

Class: Aws::Budgets::Types::UpdateNotificationRequest

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

Overview

Note:

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

{
  account_id: "AccountId", # required
  budget_name: "BudgetName", # required
  old_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
  },
  new_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
  },
}

Request of UpdateNotification

Instance Attribute Summary collapse

Instance Attribute Details

#account_idString

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

Returns:

  • (String)

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

#budget_nameString

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

Returns:

  • (String)

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

#new_notificationTypes::Notification

The updated notification to be associated with a budget.

Returns:

#old_notificationTypes::Notification

The previous notification that is associated with a budget.

Returns: