Class CfnIdMappingWorkflowPropsMixin.RuleProperty
An object containing the ruleName and matchingKeys .
Implements
Inherited Members
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
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 |
Properties
| MatchingKeys | A list of |
| RuleName | A name for the matching rule. |
Constructors
RuleProperty()
An object containing the ruleName and matchingKeys .
public RuleProperty()
Remarks
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.
RuleName
A name for the matching rule.
public string? RuleName { get; set; }