interface IncrementalRunConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.EntityResolution.CfnMatchingWorkflowPropsMixin.IncrementalRunConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsentityresolution#CfnMatchingWorkflowPropsMixin_IncrementalRunConfigProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.entityresolution.CfnMatchingWorkflowPropsMixin.IncrementalRunConfigProperty |
Python | aws_cdk.cfn_property_mixins.aws_entityresolution.CfnMatchingWorkflowPropsMixin.IncrementalRunConfigProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_entityresolution » 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 { aws_entityresolution as entityresolution } from '@aws-cdk/cfn-property-mixins';
const incrementalRunConfigProperty: entityresolution.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