interface BudgetsActionReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Budgets.BudgetsActionReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsbudgets#BudgetsActionReference |
Java | software.amazon.awscdk.interfaces.budgets.BudgetsActionReference |
Python | aws_cdk.interfaces.aws_budgets.BudgetsActionReference |
TypeScript | aws-cdk-lib » interfaces » 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 interfaces_aws_budgets } from 'aws-cdk-lib/interfaces';
const budgetsActionReference: interfaces_aws_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.

.NET
Go
Java
Python
TypeScript