interface RuleConditionPropertiesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.EntityResolution.CfnMatchingWorkflow.RuleConditionPropertiesProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsentityresolution#CfnMatchingWorkflow_RuleConditionPropertiesProperty |
Java | software.amazon.awscdk.services.entityresolution.CfnMatchingWorkflow.RuleConditionPropertiesProperty |
Python | aws_cdk.aws_entityresolution.CfnMatchingWorkflow.RuleConditionPropertiesProperty |
TypeScript | aws-cdk-lib » aws_entityresolution » CfnMatchingWorkflow » RuleConditionPropertiesProperty |
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 { aws_entityresolution as entityresolution } from 'aws-cdk-lib';
const ruleConditionPropertiesProperty: entityresolution.CfnMatchingWorkflow.RuleConditionPropertiesProperty = {
rules: [{
condition: 'condition',
ruleName: 'ruleName',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| rules | IResolvable | (IResolvable | Rule)[] | A list of rule objects, each of which have fields ruleName and condition . |
rules
Type:
IResolvable | (IResolvable | Rule)[]
A list of rule objects, each of which have fields ruleName and condition .

.NET
Go
Java
Python
TypeScript