Show / Hide Table of Contents

Interface CfnMatchingWorkflowPropsMixin.IResolutionTechniquesProperty

An object which defines the resolutionType and the ruleBasedProperties .

Namespace: Amazon.CDK.Mixins.Preview.AWS.EntityResolution.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public interface CfnMatchingWorkflowPropsMixin.IResolutionTechniquesProperty
Syntax (vb)
Public Interface CfnMatchingWorkflowPropsMixin.IResolutionTechniquesProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-matchingworkflow-resolutiontechniques.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.Mixins.Preview.AWS.EntityResolution.Mixins;

             var resolutionTechniquesProperty = new ResolutionTechniquesProperty {
                 ProviderProperties = new ProviderPropertiesProperty {
                     IntermediateSourceConfiguration = new IntermediateSourceConfigurationProperty {
                         IntermediateS3Path = "intermediateS3Path"
                     },
                     ProviderConfiguration = new Dictionary<string, string> {
                         { "providerConfigurationKey", "providerConfiguration" }
                     },
                     ProviderServiceArn = "providerServiceArn"
                 },
                 ResolutionType = "resolutionType",
                 RuleBasedProperties = new RuleBasedPropertiesProperty {
                     AttributeMatchingModel = "attributeMatchingModel",
                     MatchPurpose = "matchPurpose",
                     Rules = new [] { new RuleProperty {
                         MatchingKeys = new [] { "matchingKeys" },
                         RuleName = "ruleName"
                     } }
                 },
                 RuleConditionProperties = new RuleConditionPropertiesProperty {
                     Rules = new [] { new RuleConditionProperty {
                         Condition = "condition",
                         RuleName = "ruleName"
                     } }
                 }
             };

Synopsis

Properties

ProviderProperties

The properties of the provider service.

ResolutionType

The type of matching workflow to create. Specify one of the following types:.

RuleBasedProperties

An object which defines the list of matching rules to run and has a field rules , which is a list of rule objects.

RuleConditionProperties

An object containing the rules for a matching workflow.

Properties

ProviderProperties

The properties of the provider service.

object? ProviderProperties { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-matchingworkflow-resolutiontechniques.html#cfn-entityresolution-matchingworkflow-resolutiontechniques-providerproperties

Type union: either IResolvable or CfnMatchingWorkflowPropsMixin.IProviderPropertiesProperty

ResolutionType

The type of matching workflow to create. Specify one of the following types:.

string? ResolutionType { get; }
Property Value

string

Remarks

    See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-matchingworkflow-resolutiontechniques.html#cfn-entityresolution-matchingworkflow-resolutiontechniques-resolutiontype

    RuleBasedProperties

    An object which defines the list of matching rules to run and has a field rules , which is a list of rule objects.

    object? RuleBasedProperties { get; }
    Property Value

    object

    Remarks

    See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-matchingworkflow-resolutiontechniques.html#cfn-entityresolution-matchingworkflow-resolutiontechniques-rulebasedproperties

    Type union: either IResolvable or CfnMatchingWorkflowPropsMixin.IRuleBasedPropertiesProperty

    RuleConditionProperties

    An object containing the rules for a matching workflow.

    object? RuleConditionProperties { get; }
    Property Value

    object

    Remarks

    See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-matchingworkflow-resolutiontechniques.html#cfn-entityresolution-matchingworkflow-resolutiontechniques-ruleconditionproperties

    Type union: either IResolvable or CfnMatchingWorkflowPropsMixin.IRuleConditionPropertiesProperty

    Back to top Generated by DocFX