IncrementalRunConfig

An object which defines an incremental run type and has only incrementalRunType as a field.

Amazon Web ServicesData IntegrationData MatchingEntity ResolutionMachine Learning

Properties

Name Type Description
incrementalRunType object
View JSON Schema on GitHub

JSON Schema

amazon-entity-resolution-incremental-run-config-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-entity-resolution/refs/heads/main/json-schema/amazon-entity-resolution-incremental-run-config-schema.json",
  "title": "IncrementalRunConfig",
  "description": "An object which defines an incremental run type and has only <code>incrementalRunType</code> as a field.",
  "type": "object",
  "properties": {
    "incrementalRunType": {
      "allOf": [
        {
          "$ref": "#/components/schemas/IncrementalRunType"
        },
        {
          "description": "The type of incremental run. It takes only one value: <code>IMMEDIATE</code>."
        }
      ]
    }
  }
}