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:
- 
Nested Class SummaryNested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnMatchingWorkflow.RuleConditionPropertiesPropertystatic final classAn implementation forCfnMatchingWorkflow.RuleConditionPropertiesProperty
- 
Method SummaryMethods inherited from interface software.amazon.jsii.JsiiSerializable$jsii$toJson
- 
Method Details- 
getRulesA list of rule objects, each of which have fieldsruleNameandcondition.Returns union: either IResolvableor Listinvalid input: '<'eitherIResolvableorCfnMatchingWorkflow.RuleConditionProperty>- See Also:
 
- 
builder
 
-