interface BudgetActionToAddProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Deadline.CfnBudget.BudgetActionToAddProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsdeadline#CfnBudget_BudgetActionToAddProperty |
Java | software.amazon.awscdk.services.deadline.CfnBudget.BudgetActionToAddProperty |
Python | aws_cdk.aws_deadline.CfnBudget.BudgetActionToAddProperty |
TypeScript | aws-cdk-lib » aws_deadline » CfnBudget » BudgetActionToAddProperty |
The budget action to add.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_deadline as deadline } from 'aws-cdk-lib';
const budgetActionToAddProperty: deadline.CfnBudget.BudgetActionToAddProperty = {
thresholdPercentage: 123,
type: 'type',
// the properties below are optional
description: 'description',
};
Properties
| Name | Type | Description |
|---|---|---|
| threshold | number | The percentage threshold for the budget action. |
| type | string | The type of budget action. |
| description? | string | A description for the budget action. |
thresholdPercentage
Type:
number
The percentage threshold for the budget action.
type
Type:
string
The type of budget action.
description?
Type:
string
(optional)
A description for the budget action.

.NET
Go
Java
Python
TypeScript