Show / Hide Table of Contents

Class CfnAnalysisTemplate.ColumnClassificationDetailsProperty

Contains classification information for data columns, including mappings that specify how columns should be handled during synthetic data generation and privacy analysis.

Inheritance
object
CfnAnalysisTemplate.ColumnClassificationDetailsProperty
Implements
CfnAnalysisTemplate.IColumnClassificationDetailsProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.CleanRooms
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnAnalysisTemplate.ColumnClassificationDetailsProperty : CfnAnalysisTemplate.IColumnClassificationDetailsProperty
Syntax (vb)
Public Class CfnAnalysisTemplate.ColumnClassificationDetailsProperty Implements CfnAnalysisTemplate.IColumnClassificationDetailsProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-analysistemplate-columnclassificationdetails.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 columnClassificationDetailsProperty = new ColumnClassificationDetailsProperty {
                 ColumnMapping = new [] { new SyntheticDataColumnPropertiesProperty {
                     ColumnName = "columnName",
                     ColumnType = "columnType",
                     IsPredictiveValue = false
                 } }
             };

Synopsis

Constructors

ColumnClassificationDetailsProperty()

Contains classification information for data columns, including mappings that specify how columns should be handled during synthetic data generation and privacy analysis.

Properties

ColumnMapping

A mapping that defines the classification of data columns for synthetic data generation and specifies how each column should be handled during the privacy-preserving data synthesis process.

Constructors

ColumnClassificationDetailsProperty()

Contains classification information for data columns, including mappings that specify how columns should be handled during synthetic data generation and privacy analysis.

public ColumnClassificationDetailsProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-analysistemplate-columnclassificationdetails.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 columnClassificationDetailsProperty = new ColumnClassificationDetailsProperty {
                 ColumnMapping = new [] { new SyntheticDataColumnPropertiesProperty {
                     ColumnName = "columnName",
                     ColumnType = "columnType",
                     IsPredictiveValue = false
                 } }
             };

Properties

ColumnMapping

A mapping that defines the classification of data columns for synthetic data generation and specifies how each column should be handled during the privacy-preserving data synthesis process.

public object ColumnMapping { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-analysistemplate-columnclassificationdetails.html#cfn-cleanrooms-analysistemplate-columnclassificationdetails-columnmapping

Type union: either IResolvable or (either IResolvable or CfnAnalysisTemplate.ISyntheticDataColumnPropertiesProperty)[]

Implements

CfnAnalysisTemplate.IColumnClassificationDetailsProperty
Back to top Generated by DocFX