Interface CfnIdMappingWorkflow.IdMappingRuleBasedPropertiesProperty

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

@Stability(Stable) public static interface CfnIdMappingWorkflow.IdMappingRuleBasedPropertiesProperty extends software.amazon.jsii.JsiiSerializable
An object that defines the list of matching rules to run in an ID mapping workflow.

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.*;
 IdMappingRuleBasedPropertiesProperty idMappingRuleBasedPropertiesProperty = IdMappingRuleBasedPropertiesProperty.builder()
         .attributeMatchingModel("attributeMatchingModel")
         .recordMatchingModel("recordMatchingModel")
         // the properties below are optional
         .ruleDefinitionType("ruleDefinitionType")
         .rules(List.of(RuleProperty.builder()
                 .matchingKeys(List.of("matchingKeys"))
                 .ruleName("ruleName")
                 .build()))
         .build();
 

See Also: