Update Notification
budgets_update_notification | R Documentation |
Updates a notification¶
Description¶
Updates a notification.
Usage¶
budgets_update_notification(AccountId, BudgetName, OldNotification,
NewNotification)
Arguments¶
AccountId |
[required] The |
BudgetName |
[required] The name of the budget whose notification you want to update. |
OldNotification |
[required] The previous notification that is associated with a budget. |
NewNotification |
[required] The updated notification to be associated with a budget. |
Value¶
An empty list.
Request syntax¶
svc$update_notification(
AccountId = "string",
BudgetName = "string",
OldNotification = list(
NotificationType = "ACTUAL"|"FORECASTED",
ComparisonOperator = "GREATER_THAN"|"LESS_THAN"|"EQUAL_TO",
Threshold = 123.0,
ThresholdType = "PERCENTAGE"|"ABSOLUTE_VALUE",
NotificationState = "OK"|"ALARM"
),
NewNotification = list(
NotificationType = "ACTUAL"|"FORECASTED",
ComparisonOperator = "GREATER_THAN"|"LESS_THAN"|"EQUAL_TO",
Threshold = 123.0,
ThresholdType = "PERCENTAGE"|"ABSOLUTE_VALUE",
NotificationState = "OK"|"ALARM"
)
)