Class CfnConfiguredTable.DifferentialPrivacyProperty
The analysis method allowed for the configured tables.
Implements
Inherited Members
Namespace: Amazon.CDK.AwsCleanrooms
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnConfiguredTable.DifferentialPrivacyProperty : CfnConfiguredTable.IDifferentialPrivacyProperty
Syntax (vb)
Public Class CfnConfiguredTable.DifferentialPrivacyProperty Implements CfnConfiguredTable.IDifferentialPrivacyProperty
Remarks
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.
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Aws_cleanrooms;
var differentialPrivacyProperty = new DifferentialPrivacyProperty {
Columns = new [] { new DifferentialPrivacyColumnProperty {
Name = "name"
} }
};
Synopsis
Constructors
DifferentialPrivacyProperty() | The analysis method allowed for the configured tables. |
Properties
Columns | The name of the column, such as user_id, that contains the unique identifier of your users, whose privacy you want to protect. |
Constructors
DifferentialPrivacyProperty()
The analysis method allowed for the configured tables.
public DifferentialPrivacyProperty()
Remarks
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.
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Aws_cleanrooms;
var differentialPrivacyProperty = new DifferentialPrivacyProperty {
Columns = new [] { new DifferentialPrivacyColumnProperty {
Name = "name"
} }
};
Properties
Columns
The name of the column, such as user_id, that contains the unique identifier of your users, whose privacy you want to protect.
public object Columns { get; set; }
Property Value
Remarks
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.