interface HistoricalOptionsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Budgets.CfnBudgetPropsMixin.HistoricalOptionsProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbudgets#CfnBudgetPropsMixin_HistoricalOptionsProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.budgets.CfnBudgetPropsMixin.HistoricalOptionsProperty |
Python | aws_cdk.cfn_property_mixins.aws_budgets.CfnBudgetPropsMixin.HistoricalOptionsProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_budgets » 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 { aws_budgets as budgets } from '@aws-cdk/cfn-property-mixins';
const historicalOptionsProperty: budgets.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