interface BudgetActionToAddProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Deadline.CfnBudgetPropsMixin.BudgetActionToAddProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsdeadline#CfnBudgetPropsMixin_BudgetActionToAddProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.deadline.CfnBudgetPropsMixin.BudgetActionToAddProperty |
Python | aws_cdk.cfn_property_mixins.aws_deadline.CfnBudgetPropsMixin.BudgetActionToAddProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_deadline » CfnBudgetPropsMixin » 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/cfn-property-mixins';
const budgetActionToAddProperty: deadline.CfnBudgetPropsMixin.BudgetActionToAddProperty = {
description: 'description',
thresholdPercentage: 123,
type: 'type',
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | A description for the budget action. |
| threshold | number | The percentage threshold for the budget action. |
| type? | string | The type of budget action. |
description?
Type:
string
(optional)
A description for the budget action.
thresholdPercentage?
Type:
number
(optional)
The percentage threshold for the budget action.
type?
Type:
string
(optional)
The type of budget action.

.NET
Go
Java
Python
TypeScript