Show / Hide Table of Contents

Class CfnMatchingWorkflow.OutputAttributeProperty

A list of OutputAttribute objects, each of which have the fields Name and Hashed .

Inheritance
object
CfnMatchingWorkflow.OutputAttributeProperty
Implements
CfnMatchingWorkflow.IOutputAttributeProperty
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.EntityResolution
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnMatchingWorkflow.OutputAttributeProperty : CfnMatchingWorkflow.IOutputAttributeProperty
Syntax (vb)
Public Class CfnMatchingWorkflow.OutputAttributeProperty Implements CfnMatchingWorkflow.IOutputAttributeProperty
Remarks

Each of these objects selects a column to be included in the output table, and whether the values of the column should be hashed.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-matchingworkflow-outputattribute.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.EntityResolution;

             var outputAttributeProperty = new OutputAttributeProperty {
                 Name = "name",

                 // the properties below are optional
                 Hashed = false
             };

Synopsis

Constructors

OutputAttributeProperty()

A list of OutputAttribute objects, each of which have the fields Name and Hashed .

Properties

Hashed

Enables the ability to hash the column values in the output.

Name

A name of a column to be written to the output.

Constructors

OutputAttributeProperty()

A list of OutputAttribute objects, each of which have the fields Name and Hashed .

public OutputAttributeProperty()
Remarks

Each of these objects selects a column to be included in the output table, and whether the values of the column should be hashed.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-matchingworkflow-outputattribute.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.EntityResolution;

             var outputAttributeProperty = new OutputAttributeProperty {
                 Name = "name",

                 // the properties below are optional
                 Hashed = false
             };

Properties

Hashed

Enables the ability to hash the column values in the output.

public object? Hashed { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-matchingworkflow-outputattribute.html#cfn-entityresolution-matchingworkflow-outputattribute-hashed

Type union: either bool or IResolvable

Name

A name of a column to be written to the output.

public string Name { get; set; }
Property Value

string

Remarks

This must be an InputField name in the schema mapping.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-matchingworkflow-outputattribute.html#cfn-entityresolution-matchingworkflow-outputattribute-name

Implements

CfnMatchingWorkflow.IOutputAttributeProperty
Back to top Generated by DocFX