Delete Notification
budgets_delete_notification | R Documentation |
Deletes a notification¶
Description¶
Deletes a notification.
Deleting a notification also deletes the subscribers that are associated with the notification.
Usage¶
budgets_delete_notification(AccountId, BudgetName, Notification)
Arguments¶
AccountId |
[required] The |
BudgetName |
[required] The name of the budget whose notification you want to delete. |
Notification |
[required] The notification that you want to delete. |
Value¶
An empty list.
Request syntax¶
svc$delete_notification(
AccountId = "string",
BudgetName = "string",
Notification = list(
NotificationType = "ACTUAL"|"FORECASTED",
ComparisonOperator = "GREATER_THAN"|"LESS_THAN"|"EQUAL_TO",
Threshold = 123.0,
ThresholdType = "PERCENTAGE"|"ABSOLUTE_VALUE",
NotificationState = "OK"|"ALARM"
)
)