interface RuleConditionPropertiesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.EntityResolution.Mixins.CfnMatchingWorkflowPropsMixin.RuleConditionPropertiesProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsentityresolution/mixins#CfnMatchingWorkflowPropsMixin_RuleConditionPropertiesProperty |
Java | software.amazon.awscdk.mixins.preview.services.entityresolution.mixins.CfnMatchingWorkflowPropsMixin.RuleConditionPropertiesProperty |
Python | aws_cdk.mixins_preview.aws_entityresolution.mixins.CfnMatchingWorkflowPropsMixin.RuleConditionPropertiesProperty |
TypeScript | @aws-cdk/mixins-preview » aws_entityresolution » mixins » CfnMatchingWorkflowPropsMixin » 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 { mixins as entityresolution_mixins } from '@aws-cdk/mixins-preview/aws-entityresolution';
const ruleConditionPropertiesProperty: entityresolution_mixins.CfnMatchingWorkflowPropsMixin.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)[]
(optional)
A list of rule objects, each of which have fields ruleName and condition .

.NET
Go
Java
Python
TypeScript