Interface CfnMatchingWorkflow.RuleBasedPropertiesProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnMatchingWorkflow.RuleBasedPropertiesProperty.Jsii$Proxy
Enclosing class:
CfnMatchingWorkflow

@Stability(Stable) public static interface CfnMatchingWorkflow.RuleBasedPropertiesProperty extends software.amazon.jsii.JsiiSerializable
An object which defines the list of matching rules to run and has a field Rules , which is a list of rule objects.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.entityresolution.*;
 RuleBasedPropertiesProperty ruleBasedPropertiesProperty = RuleBasedPropertiesProperty.builder()
         .attributeMatchingModel("attributeMatchingModel")
         .rules(List.of(RuleProperty.builder()
                 .matchingKeys(List.of("matchingKeys"))
                 .ruleName("ruleName")
                 .build()))
         .build();
 

See Also: