Interface CfnConfiguredTable.DifferentialPrivacyProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnConfiguredTable.DifferentialPrivacyProperty.Jsii$Proxy
- Enclosing class:
CfnConfiguredTable
@Stability(Stable)
public static interface CfnConfiguredTable.DifferentialPrivacyProperty
extends software.amazon.jsii.JsiiSerializable
The analysis method for the configured tables.
The only valid value is currently DIRECT_QUERY
.
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.*; DifferentialPrivacyProperty differentialPrivacyProperty = DifferentialPrivacyProperty.builder() .columns(List.of(DifferentialPrivacyColumnProperty.builder() .name("name") .build())) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnConfiguredTable.DifferentialPrivacyProperty
static final class
An implementation forCfnConfiguredTable.DifferentialPrivacyProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
The name of the column, such as user_id, that contains the unique identifier of your users, whose privacy you want to protect.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getColumns
The name of the column, such as user_id, that contains the unique identifier of your users, whose privacy you want to protect.If you want to turn on differential privacy for two or more tables in a collaboration, you must configure the same column as the user identifier column in both analysis rules.
- See Also:
-
builder
-