interface BudgetScheduleProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Deadline.CfnBudgetPropsMixin.BudgetScheduleProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsdeadline#CfnBudgetPropsMixin_BudgetScheduleProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.deadline.CfnBudgetPropsMixin.BudgetScheduleProperty |
Python | aws_cdk.cfn_property_mixins.aws_deadline.CfnBudgetPropsMixin.BudgetScheduleProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_deadline » CfnBudgetPropsMixin » BudgetScheduleProperty |
The start and end time of the budget.
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 budgetScheduleProperty: deadline.CfnBudgetPropsMixin.BudgetScheduleProperty = {
fixed: {
endTime: 'endTime',
startTime: 'startTime',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| fixed? | IResolvable | Fixed | The details of a fixed budget schedule. |
fixed?
Type:
IResolvable | Fixed
(optional)
The details of a fixed budget schedule.

.NET
Go
Java
Python
TypeScript