Interface CfnPrivacyBudgetTemplatePropsMixin.BudgetParameterProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnPrivacyBudgetTemplatePropsMixin.BudgetParameterProperty.Jsii$Proxy
- Enclosing class:
CfnPrivacyBudgetTemplatePropsMixin
@Stability(Stable)
public static interface CfnPrivacyBudgetTemplatePropsMixin.BudgetParameterProperty
extends software.amazon.jsii.JsiiSerializable
Individual budget parameter configuration that defines specific budget allocation settings for access budgets.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.cleanrooms.*;
BudgetParameterProperty budgetParameterProperty = BudgetParameterProperty.builder()
.autoRefresh("autoRefresh")
.budget(123)
.type("type")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnPrivacyBudgetTemplatePropsMixin.BudgetParameterProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringWhether this individual budget parameter automatically refreshes when the budget period resets.default NumberThe budget allocation amount for this specific parameter.default StringgetType()The type of budget parameter being configured.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAutoRefresh
Whether this individual budget parameter automatically refreshes when the budget period resets.- See Also:
-
getBudget
The budget allocation amount for this specific parameter.- See Also:
-
getType
The type of budget parameter being configured.- See Also:
-
builder
@Stability(Stable) static CfnPrivacyBudgetTemplatePropsMixin.BudgetParameterProperty.Builder builder()
-