Interface CfnMatchingWorkflow.ResolutionTechniquesProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnMatchingWorkflow.ResolutionTechniquesProperty.Jsii$Proxy
Enclosing class:
CfnMatchingWorkflow

@Stability(Stable) public static interface CfnMatchingWorkflow.ResolutionTechniquesProperty extends software.amazon.jsii.JsiiSerializable
An object which defines the resolutionType and the ruleBasedProperties .

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.*;
 ResolutionTechniquesProperty resolutionTechniquesProperty = ResolutionTechniquesProperty.builder()
         .providerProperties(ProviderPropertiesProperty.builder()
                 .providerServiceArn("providerServiceArn")
                 // the properties below are optional
                 .intermediateSourceConfiguration(IntermediateSourceConfigurationProperty.builder()
                         .intermediateS3Path("intermediateS3Path")
                         .build())
                 .providerConfiguration(Map.of(
                         "providerConfigurationKey", "providerConfiguration"))
                 .build())
         .resolutionType("resolutionType")
         .ruleBasedProperties(RuleBasedPropertiesProperty.builder()
                 .attributeMatchingModel("attributeMatchingModel")
                 .rules(List.of(RuleProperty.builder()
                         .matchingKeys(List.of("matchingKeys"))
                         .ruleName("ruleName")
                         .build()))
                 // the properties below are optional
                 .matchPurpose("matchPurpose")
                 .build())
         .build();
 

See Also: