Interface CfnBudget.AutoAdjustDataProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnBudget.AutoAdjustDataProperty.Jsii$Proxy
- Enclosing class:
CfnBudget
@Stability(Stable)
public static interface CfnBudget.AutoAdjustDataProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.budgets.*; AutoAdjustDataProperty autoAdjustDataProperty = AutoAdjustDataProperty.builder() .autoAdjustType("autoAdjustType") // the properties below are optional .historicalOptions(HistoricalOptionsProperty.builder() .budgetAdjustmentPeriod(123) .build()) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnBudget.AutoAdjustDataProperty
static final class
An implementation forCfnBudget.AutoAdjustDataProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAutoAdjustType
The string that defines whether your budget auto-adjusts based on historical or forecasted data.- See Also:
-
getHistoricalOptions
The parameters that define or describe the historical data that your auto-adjusting budget is based on.- See Also:
-
builder
-