Show / Hide Table of Contents

Class CfnIdMappingWorkflowPropsMixin.RuleProperty

An object containing the ruleName and matchingKeys .

Inheritance
object
CfnIdMappingWorkflowPropsMixin.RuleProperty
Implements
CfnIdMappingWorkflowPropsMixin.IRuleProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.Mixins.Preview.AWS.EntityResolution.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnIdMappingWorkflowPropsMixin.RuleProperty : CfnIdMappingWorkflowPropsMixin.IRuleProperty
Syntax (vb)
Public Class CfnIdMappingWorkflowPropsMixin.RuleProperty Implements CfnIdMappingWorkflowPropsMixin.IRuleProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-idmappingworkflow-rule.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.Mixins.Preview.AWS.EntityResolution.Mixins;

             var ruleProperty = new RuleProperty {
                 MatchingKeys = new [] { "matchingKeys" },
                 RuleName = "ruleName"
             };

Synopsis

Constructors

RuleProperty()

An object containing the ruleName and matchingKeys .

Properties

MatchingKeys

A list of MatchingKeys .

RuleName

A name for the matching rule.

Constructors

RuleProperty()

An object containing the ruleName and matchingKeys .

public RuleProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-idmappingworkflow-rule.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.Mixins.Preview.AWS.EntityResolution.Mixins;

             var ruleProperty = new RuleProperty {
                 MatchingKeys = new [] { "matchingKeys" },
                 RuleName = "ruleName"
             };

Properties

MatchingKeys

A list of MatchingKeys .

public string[]? MatchingKeys { get; set; }
Property Value

string[]

Remarks

The MatchingKeys must have been defined in the SchemaMapping . Two records are considered to match according to this rule if all of the MatchingKeys match.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-idmappingworkflow-rule.html#cfn-entityresolution-idmappingworkflow-rule-matchingkeys

RuleName

A name for the matching rule.

public string? RuleName { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-idmappingworkflow-rule.html#cfn-entityresolution-idmappingworkflow-rule-rulename

Implements

CfnIdMappingWorkflowPropsMixin.IRuleProperty
Back to top Generated by DocFX