interface IncrementalRunConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.EntityResolution.Mixins.CfnMatchingWorkflowPropsMixin.IncrementalRunConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsentityresolution/mixins#CfnMatchingWorkflowPropsMixin_IncrementalRunConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.entityresolution.mixins.CfnMatchingWorkflowPropsMixin.IncrementalRunConfigProperty |
Python | aws_cdk.mixins_preview.aws_entityresolution.mixins.CfnMatchingWorkflowPropsMixin.IncrementalRunConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_entityresolution » mixins » CfnMatchingWorkflowPropsMixin » IncrementalRunConfigProperty |
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
resolutionTypeisML_MATCHINGorPROVIDER, 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 { mixins as entityresolution_mixins } from '@aws-cdk/mixins-preview/aws-entityresolution';
const incrementalRunConfigProperty: entityresolution_mixins.CfnMatchingWorkflowPropsMixin.IncrementalRunConfigProperty = {
incrementalRunType: 'incrementalRunType',
};
Properties
| Name | Type | Description |
|---|---|---|
| incremental | string | The type of incremental run. The only valid value is IMMEDIATE . This appears as "Automatic" in the console. |
incrementalRunType?
Type:
string
(optional)
The type of incremental run. The only valid value is IMMEDIATE . This appears as "Automatic" in the console.
For workflows where
resolutionTypeisML_MATCHINGorPROVIDER, incremental processing is not supported.

.NET
Go
Java
Python
TypeScript