Interface CfnPrivacyBudgetTemplate.BudgetParameterProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnPrivacyBudgetTemplate.BudgetParameterProperty.Jsii$Proxy
- Enclosing class:
CfnPrivacyBudgetTemplate
@Stability(Stable)
public static interface CfnPrivacyBudgetTemplate.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.services.cleanrooms.*;
BudgetParameterProperty budgetParameterProperty = BudgetParameterProperty.builder()
.budget(123)
.type("type")
// the properties below are optional
.autoRefresh("autoRefresh")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnPrivacyBudgetTemplate.BudgetParameterPropertystatic final classAn implementation forCfnPrivacyBudgetTemplate.BudgetParameterProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBudget
The budget allocation amount for this specific parameter.- See Also:
-
getType
The type of budget parameter being configured.- See Also:
-
getAutoRefresh
Whether this individual budget parameter automatically refreshes when the budget period resets.- See Also:
-
builder
-