Class CfnMatchingWorkflowPropsMixin

java.lang.Object
software.amazon.jsii.JsiiObject
software.amazon.awscdk.Mixin
software.amazon.awscdk.cfnpropertymixins.services.entityresolution.CfnMatchingWorkflowPropsMixin
All Implemented Interfaces:
software.amazon.jsii.JsiiSerializable, software.constructs.IMixin

@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)", date="2026-03-11T13:19:59.365Z") @Stability(Stable) public class CfnMatchingWorkflowPropsMixin extends Mixin implements software.constructs.IMixin
Creates a matching workflow that defines the configuration for a data processing job.

The workflow name must be unique. To modify an existing workflow, use UpdateMatchingWorkflow .

For workflows where resolutionType is ML_MATCHING or PROVIDER , incremental processing is not supported.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.cfnpropertymixins.services.entityresolution.*;
 import software.amazon.awscdk.*;
 IMergeStrategy mergeStrategy;
 CfnMatchingWorkflowPropsMixin cfnMatchingWorkflowPropsMixin = CfnMatchingWorkflowPropsMixin.Builder.create(CfnMatchingWorkflowMixinProps.builder()
         .description("description")
         .incrementalRunConfig(IncrementalRunConfigProperty.builder()
                 .incrementalRunType("incrementalRunType")
                 .build())
         .inputSourceConfig(List.of(InputSourceProperty.builder()
                 .applyNormalization(false)
                 .inputSourceArn("inputSourceArn")
                 .schemaArn("schemaArn")
                 .build()))
         .outputSourceConfig(List.of(OutputSourceProperty.builder()
                 .applyNormalization(false)
                 .customerProfilesIntegrationConfig(CustomerProfilesIntegrationConfigProperty.builder()
                         .domainArn("domainArn")
                         .objectTypeArn("objectTypeArn")
                         .build())
                 .kmsArn("kmsArn")
                 .output(List.of(OutputAttributeProperty.builder()
                         .hashed(false)
                         .name("name")
                         .build()))
                 .outputS3Path("outputS3Path")
                 .build()))
         .resolutionTechniques(ResolutionTechniquesProperty.builder()
                 .providerProperties(ProviderPropertiesProperty.builder()
                         .intermediateSourceConfiguration(IntermediateSourceConfigurationProperty.builder()
                                 .intermediateS3Path("intermediateS3Path")
                                 .build())
                         .providerConfiguration(Map.of(
                                 "providerConfigurationKey", "providerConfiguration"))
                         .providerServiceArn("providerServiceArn")
                         .build())
                 .resolutionType("resolutionType")
                 .ruleBasedProperties(RuleBasedPropertiesProperty.builder()
                         .attributeMatchingModel("attributeMatchingModel")
                         .matchPurpose("matchPurpose")
                         .rules(List.of(RuleProperty.builder()
                                 .matchingKeys(List.of("matchingKeys"))
                                 .ruleName("ruleName")
                                 .build()))
                         .build())
                 .ruleConditionProperties(RuleConditionPropertiesProperty.builder()
                         .rules(List.of(RuleConditionProperty.builder()
                                 .condition("condition")
                                 .ruleName("ruleName")
                                 .build()))
                         .build())
                 .build())
         .roleArn("roleArn")
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .workflowName("workflowName")
         .build())
 .strategy(mergeStrategy)
 .build();
 

See Also:
  • Field Details

    • CFN_PROPERTY_KEYS

      @Stability(Stable) protected static final List<String> CFN_PROPERTY_KEYS
  • Constructor Details

    • CfnMatchingWorkflowPropsMixin

      protected CfnMatchingWorkflowPropsMixin(software.amazon.jsii.JsiiObjectRef objRef)
    • CfnMatchingWorkflowPropsMixin

      protected CfnMatchingWorkflowPropsMixin(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
    • CfnMatchingWorkflowPropsMixin

      @Stability(Stable) public CfnMatchingWorkflowPropsMixin(@NotNull CfnMatchingWorkflowMixinProps props, @Nullable CfnPropertyMixinOptions options)
      Create a mixin to apply properties to AWS::EntityResolution::MatchingWorkflow.

      Parameters:
      props - L1 properties to apply. This parameter is required.
      options - Mixin options.
    • CfnMatchingWorkflowPropsMixin

      @Stability(Stable) public CfnMatchingWorkflowPropsMixin(@NotNull CfnMatchingWorkflowMixinProps props)
      Create a mixin to apply properties to AWS::EntityResolution::MatchingWorkflow.

      Parameters:
      props - L1 properties to apply. This parameter is required.
  • Method Details

    • applyTo

      @Stability(Stable) public void applyTo(@NotNull software.constructs.IConstruct construct)
      Apply the mixin properties to the construct.

      Specified by:
      applyTo in interface software.constructs.IMixin
      Specified by:
      applyTo in class Mixin
      Parameters:
      construct - This parameter is required.
    • supports

      @Stability(Stable) @NotNull public Boolean supports(@NotNull software.constructs.IConstruct construct)
      Check if this mixin supports the given construct.

      Specified by:
      supports in interface software.constructs.IMixin
      Overrides:
      supports in class Mixin
      Parameters:
      construct - This parameter is required.
    • getProps

      @Stability(Stable) @NotNull protected CfnMatchingWorkflowMixinProps getProps()
    • getStrategy

      @Stability(Stable) @NotNull protected IMergeStrategy getStrategy()