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: