Interface CfnMatchingWorkflow.RuleConditionPropertiesProperty

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

@Stability(Stable) public static interface CfnMatchingWorkflow.RuleConditionPropertiesProperty extends software.amazon.jsii.JsiiSerializable
The properties of a rule condition that provides the ability to use more complex syntax.

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.*;
 RuleConditionPropertiesProperty ruleConditionPropertiesProperty = RuleConditionPropertiesProperty.builder()
         .rules(List.of(RuleConditionProperty.builder()
                 .condition("condition")
                 .ruleName("ruleName")
                 .build()))
         .build();
 

See Also: