interface RuleConditionPropertiesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.EntityResolution.CfnMatchingWorkflowPropsMixin.RuleConditionPropertiesProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsentityresolution#CfnMatchingWorkflowPropsMixin_RuleConditionPropertiesProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.entityresolution.CfnMatchingWorkflowPropsMixin.RuleConditionPropertiesProperty |
Python | aws_cdk.cfn_property_mixins.aws_entityresolution.CfnMatchingWorkflowPropsMixin.RuleConditionPropertiesProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_entityresolution » 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 { aws_entityresolution as entityresolution } from '@aws-cdk/cfn-property-mixins';
const ruleConditionPropertiesProperty: entityresolution.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