Interface CfnPrivacyBudgetTemplateProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnPrivacyBudgetTemplateProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-06T23:25:05.339Z")
@Stability(Stable)
public interface CfnPrivacyBudgetTemplateProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnPrivacyBudgetTemplate.
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.*;
CfnPrivacyBudgetTemplateProps cfnPrivacyBudgetTemplateProps = CfnPrivacyBudgetTemplateProps.builder()
.autoRefresh("autoRefresh")
.membershipIdentifier("membershipIdentifier")
.parameters(ParametersProperty.builder()
.epsilon(123)
.usersNoisePerQuery(123)
.build())
.privacyBudgetType("privacyBudgetType")
// the properties below are optional
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnPrivacyBudgetTemplatePropsstatic final classAn implementation forCfnPrivacyBudgetTemplateProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()How often the privacy budget refreshes.The identifier for a membership resource.Specifies the epsilon and noise parameters for the privacy budget template.Specifies the type of the privacy budget template.getTags()An arbitrary set of tags (key-value pairs) for this cleanrooms privacy budget template.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAutoRefresh
How often the privacy budget refreshes.If you plan to regularly bring new data into the collaboration, use
CALENDAR_MONTHto automatically get a new privacy budget for the collaboration every calendar month. Choosing this option allows arbitrary amounts of information to be revealed about rows of the data when repeatedly queried across refreshes. Avoid choosing this if the same rows will be repeatedly queried between privacy budget refreshes.- See Also:
-
getMembershipIdentifier
The identifier for a membership resource.- See Also:
-
getParameters
Specifies the epsilon and noise parameters for the privacy budget template.- See Also:
-
getPrivacyBudgetType
Specifies the type of the privacy budget template.- See Also:
-
getTags
An arbitrary set of tags (key-value pairs) for this cleanrooms privacy budget template.- See Also:
-
builder
-