interface CfnBudgetMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Deadline.CfnBudgetMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsdeadline#CfnBudgetMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.deadline.CfnBudgetMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_deadline.CfnBudgetMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_deadline » CfnBudgetMixinProps |
Properties for CfnBudgetPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-deadline-budget.html
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 cfnBudgetMixinProps: deadline.CfnBudgetMixinProps = {
actions: [{
description: 'description',
thresholdPercentage: 123,
type: 'type',
}],
approximateDollarLimit: 123,
description: 'description',
displayName: 'displayName',
farmId: 'farmId',
schedule: {
fixed: {
endTime: 'endTime',
startTime: 'startTime',
},
},
tags: [{
key: 'key',
value: 'value',
}],
usageTrackingResource: {
queueId: 'queueId',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| actions? | IResolvable | (IResolvable | Budget)[] | The budget actions to specify what happens when the budget runs out. |
| approximate | number | The dollar limit based on consumed usage. |
| description? | string | The description of the budget. |
| display | string | The display name of the budget. |
| farm | string | The farm ID. |
| schedule? | IResolvable | Budget | The start and end time of the budget. |
| tags? | Cfn[] | An array of key-value pairs to apply to this resource. |
| usage | IResolvable | Usage | The usage details of the allotted budget. |
actions?
Type:
IResolvable | (IResolvable | Budget)[]
(optional)
The budget actions to specify what happens when the budget runs out.
approximateDollarLimit?
Type:
number
(optional)
The dollar limit based on consumed usage.
description?
Type:
string
(optional)
The description of the budget.
displayName?
Type:
string
(optional)
The display name of the budget.
farmId?
Type:
string
(optional)
The farm ID.
schedule?
Type:
IResolvable | Budget
(optional)
The start and end time of the budget.
tags?
Type:
Cfn[]
(optional)
An array of key-value pairs to apply to this resource.
usageTrackingResource?
Type:
IResolvable | Usage
(optional)
The usage details of the allotted budget.

.NET
Go
Java
Python
TypeScript