BudgetsActionReference
- class aws_cdk.interfaces.aws_budgets.BudgetsActionReference(*, action_id, budget_name)
Bases:
objectA 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.interfaces import aws_budgets as interfaces_aws_budgets budgets_action_reference = interfaces_aws_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.