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

.NET
Go
Java
Python
TypeScript