interface HistoricalOptionsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Budgets.Mixins.CfnBudgetPropsMixin.HistoricalOptionsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsbudgets/mixins#CfnBudgetPropsMixin_HistoricalOptionsProperty |
Java | software.amazon.awscdk.mixins.preview.services.budgets.mixins.CfnBudgetPropsMixin.HistoricalOptionsProperty |
Python | aws_cdk.mixins_preview.aws_budgets.mixins.CfnBudgetPropsMixin.HistoricalOptionsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_budgets » mixins » CfnBudgetPropsMixin » HistoricalOptionsProperty |
The parameters that define or describe the historical data that your auto-adjusting budget is based on.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as budgets_mixins } from '@aws-cdk/mixins-preview/aws-budgets';
const historicalOptionsProperty: budgets_mixins.CfnBudgetPropsMixin.HistoricalOptionsProperty = {
budgetAdjustmentPeriod: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| budget | number | The number of budget periods included in the moving-average calculation that determines your auto-adjusted budget amount. |
budgetAdjustmentPeriod?
Type:
number
(optional)
The number of budget periods included in the moving-average calculation that determines your auto-adjusted budget amount.
The maximum value depends on the TimeUnit granularity of the budget:
- For the
DAILYgranularity, the maximum value is60. - For the
MONTHLYgranularity, the maximum value is12. - For the
QUARTERLYgranularity, the maximum value is4. - For the
ANNUALLYgranularity, the maximum value is1.

.NET
Go
Java
Python
TypeScript