interface BudgetsActionReference
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.Budgets.BudgetsActionReference | 
|  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbudgets#BudgetsActionReference | 
|  Java | software.amazon.awscdk.services.budgets.BudgetsActionReference | 
|  Python | aws_cdk.aws_budgets.BudgetsActionReference | 
|  TypeScript | aws-cdk-lib»aws_budgets»BudgetsActionReference | 
A reference to a BudgetsAction resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_budgets as budgets } from 'aws-cdk-lib';
const budgetsActionReference: budgets.BudgetsActionReference = {
  actionId: 'actionId',
  budgetName: 'budgetName',
};
Properties
| Name | Type | Description | 
|---|---|---|
| action | string | The ActionId of the BudgetsAction resource. | 
| budget | string | The BudgetName of the BudgetsAction resource. | 
actionId
Type:
string
The ActionId of the BudgetsAction resource.
budgetName
Type:
string
The BudgetName of the BudgetsAction resource.
