interface AutoAdjustDataProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Budgets.Mixins.CfnBudgetPropsMixin.AutoAdjustDataProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsbudgets/mixins#CfnBudgetPropsMixin_AutoAdjustDataProperty |
Java | software.amazon.awscdk.mixins.preview.services.budgets.mixins.CfnBudgetPropsMixin.AutoAdjustDataProperty |
Python | aws_cdk.mixins_preview.aws_budgets.mixins.CfnBudgetPropsMixin.AutoAdjustDataProperty |
TypeScript | @aws-cdk/mixins-preview » aws_budgets » mixins » CfnBudgetPropsMixin » AutoAdjustDataProperty |
Determine the budget amount for an auto-adjusting budget.
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 autoAdjustDataProperty: budgets_mixins.CfnBudgetPropsMixin.AutoAdjustDataProperty = {
autoAdjustType: 'autoAdjustType',
historicalOptions: {
budgetAdjustmentPeriod: 123,
},
};
Properties
| Name | Type | Description |
|---|---|---|
| auto | string | The string that defines whether your budget auto-adjusts based on historical or forecasted data. |
| historical | IResolvable | Historical | The parameters that define or describe the historical data that your auto-adjusting budget is based on. |
autoAdjustType?
Type:
string
(optional)
The string that defines whether your budget auto-adjusts based on historical or forecasted data.
historicalOptions?
Type:
IResolvable | Historical
(optional)
The parameters that define or describe the historical data that your auto-adjusting budget is based on.

.NET
Go
Java
Python
TypeScript