Interface CfnConfiguredTablePropsMixin.DifferentialPrivacyProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnConfiguredTablePropsMixin.DifferentialPrivacyProperty.Jsii$Proxy
- Enclosing class:
CfnConfiguredTablePropsMixin
@Stability(Stable)
public static interface CfnConfiguredTablePropsMixin.DifferentialPrivacyProperty
extends software.amazon.jsii.JsiiSerializable
The analysis method allowed for the configured tables.
DIRECT_QUERY allows SQL queries to be run directly on this table.
DIRECT_JOB allows PySpark jobs to be run directly on this table.
MULTIPLE allows both SQL queries and PySpark jobs to be run directly on this table.
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.*;
DifferentialPrivacyProperty differentialPrivacyProperty = DifferentialPrivacyProperty.builder()
.columns(List.of(DifferentialPrivacyColumnProperty.builder()
.name("name")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnConfiguredTablePropsMixin.DifferentialPrivacyPropertystatic final classAn implementation forCfnConfiguredTablePropsMixin.DifferentialPrivacyProperty -
Method Summary
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.
Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnConfiguredTablePropsMixin.DifferentialPrivacyColumnProperty>- See Also:
-
builder
@Stability(Stable) static CfnConfiguredTablePropsMixin.DifferentialPrivacyProperty.Builder builder()
-