Interface CfnPrivacyBudgetTemplate.ParametersProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnPrivacyBudgetTemplate.ParametersProperty.Jsii$Proxy
- Enclosing class:
CfnPrivacyBudgetTemplate
@Stability(Stable)
public static interface CfnPrivacyBudgetTemplate.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.services.cleanrooms.*; ParametersProperty parametersProperty = ParametersProperty.builder() .epsilon(123) .usersNoisePerQuery(123) .build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnPrivacyBudgetTemplate.ParametersProperty
static final class
An implementation forCfnPrivacyBudgetTemplate.ParametersProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
The epsilon value that you want to use.Noise 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
-
getEpsilon
The epsilon value that you want to use.- 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
-