Interface CfnMatchingWorkflowProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnMatchingWorkflowProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.103.1 (build bef2dea)", date="2024-10-25T14:21:15.535Z") @Stability(Stable) public interface CfnMatchingWorkflowProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnMatchingWorkflow.

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.*;
 CfnMatchingWorkflowProps cfnMatchingWorkflowProps = CfnMatchingWorkflowProps.builder()
         .inputSourceConfig(List.of(InputSourceProperty.builder()
                 .inputSourceArn("inputSourceArn")
                 .schemaArn("schemaArn")
                 // the properties below are optional
                 .applyNormalization(false)
                 .build()))
         .outputSourceConfig(List.of(OutputSourceProperty.builder()
                 .output(List.of(OutputAttributeProperty.builder()
                         .name("name")
                         // the properties below are optional
                         .hashed(false)
                         .build()))
                 .outputS3Path("outputS3Path")
                 // the properties below are optional
                 .applyNormalization(false)
                 .kmsArn("kmsArn")
                 .build()))
         .resolutionTechniques(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())
         .roleArn("roleArn")
         .workflowName("workflowName")
         // the properties below are optional
         .description("description")
         .incrementalRunConfig(IncrementalRunConfigProperty.builder()
                 .incrementalRunType("incrementalRunType")
                 .build())
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .build();
 

See Also: