interface DifferentialPrivacyProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CleanRooms.Mixins.CfnConfiguredTablePropsMixin.DifferentialPrivacyProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscleanrooms/mixins#CfnConfiguredTablePropsMixin_DifferentialPrivacyProperty |
Java | software.amazon.awscdk.mixins.preview.services.cleanrooms.mixins.CfnConfiguredTablePropsMixin.DifferentialPrivacyProperty |
Python | aws_cdk.mixins_preview.aws_cleanrooms.mixins.CfnConfiguredTablePropsMixin.DifferentialPrivacyProperty |
TypeScript | @aws-cdk/mixins-preview » aws_cleanrooms » mixins » CfnConfiguredTablePropsMixin » DifferentialPrivacyProperty |
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 { mixins as cleanrooms_mixins } from '@aws-cdk/mixins-preview/aws-cleanrooms';
const differentialPrivacyProperty: cleanrooms_mixins.CfnConfiguredTablePropsMixin.DifferentialPrivacyProperty = {
columns: [{
name: 'name',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| columns? | IResolvable | (IResolvable | Differential)[] | The name of the column, such as user_id, that contains the unique identifier of your users, whose privacy you want to protect. |
columns?
Type:
IResolvable | (IResolvable | Differential)[]
(optional)
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.

.NET
Go
Java
Python
TypeScript