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
isML_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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnMatchingWorkflow.IncrementalRunConfigProperty
static final class
An implementation forCfnMatchingWorkflow.IncrementalRunConfigProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getIncrementalRunType
The type of incremental run. The only valid value isIMMEDIATE
. This appears as "Automatic" in the console.For workflows where
resolutionType
isML_MATCHING
, incremental processing is not supported.- See Also:
-
builder
-