Show / Hide Table of Contents

Class CfnConfiguredTable.DifferentialPrivacyProperty

The analysis method allowed for the configured tables.

Inheritance
object
CfnConfiguredTable.DifferentialPrivacyProperty
Implements
CfnConfiguredTable.IDifferentialPrivacyProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-differentialprivacy.html

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.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-differentialprivacy.html

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

object

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.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-differentialprivacy.html#cfn-cleanrooms-configuredtable-differentialprivacy-columns

Implements

CfnConfiguredTable.IDifferentialPrivacyProperty
Back to top Generated by DocFX