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: