Interface CfnMatchingWorkflow.IncrementalRunConfigProperty

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

@Stability(Stable) public static interface CfnMatchingWorkflow.IncrementalRunConfigProperty extends software.amazon.jsii.JsiiSerializable
Optional.

An object that defines the incremental run type. This object contains only the incrementalRunType field, which appears as "Automatic" in the console.

For workflows where resolutionType is ML_MATCHING , 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.services.entityresolution.*;
 IncrementalRunConfigProperty incrementalRunConfigProperty = IncrementalRunConfigProperty.builder()
         .incrementalRunType("incrementalRunType")
         .build();
 

See Also: