Interface CfnMatchingWorkflow.RuleProperty

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

@Stability(Stable) public static interface CfnMatchingWorkflow.RuleProperty extends software.amazon.jsii.JsiiSerializable
An object containing RuleName , and MatchingKeys .

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.*;
 RuleProperty ruleProperty = RuleProperty.builder()
         .matchingKeys(List.of("matchingKeys"))
         .ruleName("ruleName")
         .build();
 

See Also: