Skip to content

Describe Budget Notifications For Account

budgets_describe_budget_notifications_for_account R Documentation

Lists the budget names and notifications that are associated with an account

Description

Lists the budget names and notifications that are associated with an account.

Usage

budgets_describe_budget_notifications_for_account(AccountId, MaxResults,
  NextToken)

Arguments

AccountId

[required]

MaxResults

An integer that represents how many budgets a paginated response contains. The default is 50.

NextToken

Value

A list with the following syntax:

list(
  BudgetNotificationsForAccount = list(
    list(
      Notifications = list(
        list(
          NotificationType = "ACTUAL"|"FORECASTED",
          ComparisonOperator = "GREATER_THAN"|"LESS_THAN"|"EQUAL_TO",
          Threshold = 123.0,
          ThresholdType = "PERCENTAGE"|"ABSOLUTE_VALUE",
          NotificationState = "OK"|"ALARM"
        )
      ),
      BudgetName = "string"
    )
  ),
  NextToken = "string"
)

Request syntax

svc$describe_budget_notifications_for_account(
  AccountId = "string",
  MaxResults = 123,
  NextToken = "string"
)