@Stability(value=Stable)
public static interface CfnBudget.HistoricalOptionsProperty
extends software.amazon.jsii.JsiiSerializable
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.*;
HistoricalOptionsProperty historicalOptionsProperty = HistoricalOptionsProperty.builder()
.budgetAdjustmentPeriod(123)
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnBudget.HistoricalOptionsProperty.Builder
A builder for
CfnBudget.HistoricalOptionsProperty |
static class |
CfnBudget.HistoricalOptionsProperty.Jsii$Proxy
An implementation for
CfnBudget.HistoricalOptionsProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnBudget.HistoricalOptionsProperty.Builder |
builder() |
Number |
getBudgetAdjustmentPeriod()
The number of budget periods included in the moving-average calculation that determines your auto-adjusted budget amount.
|
@Stability(value=Stable) @NotNull Number getBudgetAdjustmentPeriod()
The maximum value depends on the TimeUnit granularity of the budget:
DAILY granularity, the maximum value is 60 .MONTHLY granularity, the maximum value is 12 .QUARTERLY granularity, the maximum value is 4 .ANNUALLY granularity, the maximum value is 1 .@Stability(value=Stable) static CfnBudget.HistoricalOptionsProperty.Builder builder()
Copyright © 2022. All rights reserved.