Interface CfnPrivacyBudgetTemplatePropsMixin.ParametersProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnPrivacyBudgetTemplatePropsMixin.ParametersProperty.Jsii$Proxy
- Enclosing class:
CfnPrivacyBudgetTemplatePropsMixin
@Stability(Stable)
public static interface CfnPrivacyBudgetTemplatePropsMixin.ParametersProperty
extends software.amazon.jsii.JsiiSerializable
Specifies the epsilon and noise parameters for the privacy budget template.
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.*;
ParametersProperty parametersProperty = ParametersProperty.builder()
.budgetParameters(List.of(BudgetParameterProperty.builder()
.autoRefresh("autoRefresh")
.budget(123)
.type("type")
.build()))
.epsilon(123)
.resourceArn("resourceArn")
.usersNoisePerQuery(123)
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnPrivacyBudgetTemplatePropsMixin.ParametersPropertystatic final classAn implementation forCfnPrivacyBudgetTemplatePropsMixin.ParametersProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectReturns union: eitherIResolvableor Listinvalid input: '<'eitherIResolvableorCfnPrivacyBudgetTemplatePropsMixin.BudgetParameterProperty>default NumberThe epsilon value that you want to use.default Stringdefault NumberNoise added per query is measured in terms of the number of users whose contributions you want to obscure.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBudgetParameters
Returns union: eitherIResolvableor Listinvalid input: '<'eitherIResolvableorCfnPrivacyBudgetTemplatePropsMixin.BudgetParameterProperty>- See Also:
-
getEpsilon
The epsilon value that you want to use.- See Also:
-
getResourceArn
- See Also:
-
getUsersNoisePerQuery
Noise added per query is measured in terms of the number of users whose contributions you want to obscure.This value governs the rate at which the privacy budget is depleted.
- See Also:
-
builder
-