@Stability(value=Stable)
public static interface CfnBudget.BudgetDataProperty
extends software.amazon.jsii.JsiiSerializable
// 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.*;
Object costFilters;
Object plannedBudgetLimits;
BudgetDataProperty budgetDataProperty = BudgetDataProperty.builder()
.budgetType("budgetType")
.timeUnit("timeUnit")
// the properties below are optional
.budgetLimit(SpendProperty.builder()
.amount(123)
.unit("unit")
.build())
.budgetName("budgetName")
.costFilters(costFilters)
.costTypes(CostTypesProperty.builder()
.includeCredit(false)
.includeDiscount(false)
.includeOtherSubscription(false)
.includeRecurring(false)
.includeRefund(false)
.includeSubscription(false)
.includeSupport(false)
.includeTax(false)
.includeUpfront(false)
.useAmortized(false)
.useBlended(false)
.build())
.plannedBudgetLimits(plannedBudgetLimits)
.timePeriod(TimePeriodProperty.builder()
.end("end")
.start("start")
.build())
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnBudget.BudgetDataProperty.Builder
A builder for
CfnBudget.BudgetDataProperty |
static class |
CfnBudget.BudgetDataProperty.Jsii$Proxy
An implementation for
CfnBudget.BudgetDataProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnBudget.BudgetDataProperty.Builder |
builder() |
default Object |
getBudgetLimit()
`CfnBudget.BudgetDataProperty.BudgetLimit`.
|
default String |
getBudgetName()
`CfnBudget.BudgetDataProperty.BudgetName`.
|
String |
getBudgetType()
`CfnBudget.BudgetDataProperty.BudgetType`.
|
default Object |
getCostFilters()
`CfnBudget.BudgetDataProperty.CostFilters`.
|
default Object |
getCostTypes()
`CfnBudget.BudgetDataProperty.CostTypes`.
|
default Object |
getPlannedBudgetLimits()
`CfnBudget.BudgetDataProperty.PlannedBudgetLimits`.
|
default Object |
getTimePeriod()
`CfnBudget.BudgetDataProperty.TimePeriod`.
|
String |
getTimeUnit()
`CfnBudget.BudgetDataProperty.TimeUnit`.
|
@Stability(value=Stable) @Nullable default Object getBudgetLimit()
@Stability(value=Stable) @Nullable default String getBudgetName()
@Stability(value=Stable) @NotNull String getBudgetType()
@Stability(value=Stable) @Nullable default Object getCostFilters()
@Stability(value=Stable) @Nullable default Object getCostTypes()
@Stability(value=Stable) @Nullable default Object getPlannedBudgetLimits()
@Stability(value=Stable) @Nullable default Object getTimePeriod()
@Stability(value=Stable) @NotNull String getTimeUnit()
@Stability(value=Stable) static CfnBudget.BudgetDataProperty.Builder builder()
Copyright © 2021. All rights reserved.