BudgetsActionReference

class aws_cdk.aws_budgets.BudgetsActionReference(*, action_id, budget_name)

Bases: object

A reference to a BudgetsAction resource.

Parameters:
  • action_id (str) – The ActionId of the BudgetsAction resource.

  • budget_name (str) – The BudgetName of the BudgetsAction resource.

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk import aws_budgets as budgets

budgets_action_reference = budgets.BudgetsActionReference(
    action_id="actionId",
    budget_name="budgetName"
)

Attributes

action_id

The ActionId of the BudgetsAction resource.

budget_name

The BudgetName of the BudgetsAction resource.