DescribeBudgetActionsForBudget
Source:
src/AWS/Budgets/DescribeBudgetActionsForBudget.ts
Runtime binding for budgets:DescribeBudgetActionsForBudget.
Bind this operation to a Budget to list its budget actions and
their execution status — e.g. to check whether a cost kill-switch has
fired. Provide the implementation with
Effect.provide(AWS.Budgets.DescribeBudgetActionsForBudgetHttp).
Reading Budget Actions
Section titled “Reading Budget Actions”// init — bind the operation to the budgetconst listActions = yield* AWS.Budgets.DescribeBudgetActionsForBudget(budget);
// runtimeconst result = yield* listActions();const statuses = (result.Actions ?? []).map((a) => a.Status);