Interface CfnBudget.IAutoAdjustDataProperty
Determine the budget amount for an auto-adjusting budget.
Namespace: Amazon.CDK.AWS.Budgets
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnBudget.IAutoAdjustDataProperty
Syntax (vb)
Public Interface CfnBudget.IAutoAdjustDataProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Budgets;
var autoAdjustDataProperty = new AutoAdjustDataProperty {
AutoAdjustType = "autoAdjustType",
// the properties below are optional
HistoricalOptions = new HistoricalOptionsProperty {
BudgetAdjustmentPeriod = 123
}
};
Synopsis
Properties
| AutoAdjustType | The string that defines whether your budget auto-adjusts based on historical or forecasted data. |
| HistoricalOptions | The parameters that define or describe the historical data that your auto-adjusting budget is based on. |
Properties
AutoAdjustType
The string that defines whether your budget auto-adjusts based on historical or forecasted data.
string AutoAdjustType { get; }
Property Value
Remarks
HistoricalOptions
The parameters that define or describe the historical data that your auto-adjusting budget is based on.
object? HistoricalOptions { get; }