CreateMatchingWorkflowInput

CreateMatchingWorkflowInput schema from AWS EntityResolution

Amazon Web ServicesData IntegrationData MatchingEntity ResolutionMachine-Learning

Properties

Name Type Description
description object
incrementalRunConfig object
inputSourceConfig object
outputSourceConfig object
resolutionTechniques object
roleArn object
tags object
workflowName object
View JSON Schema on GitHub

JSON Schema

amazon-entity-resolution-create-matching-workflow-input-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-create-matching-workflow-input-schema.json",
  "title": "CreateMatchingWorkflowInput",
  "description": "CreateMatchingWorkflowInput schema from AWS EntityResolution",
  "type": "object",
  "properties": {
    "description": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Description"
        },
        {
          "description": "A description of the workflow."
        }
      ]
    },
    "incrementalRunConfig": {
      "allOf": [
        {
          "$ref": "#/components/schemas/IncrementalRunConfig"
        },
        {
          "description": "An object which defines an incremental run type and has only <code>incrementalRunType</code> as a field."
        }
      ]
    },
    "inputSourceConfig": {
      "allOf": [
        {
          "$ref": "#/components/schemas/InputSourceConfig"
        },
        {
          "description": "A list of <code>InputSource</code> objects, which have the fields <code>InputSourceARN</code> and <code>SchemaName</code>."
        }
      ]
    },
    "outputSourceConfig": {
      "allOf": [
        {
          "$ref": "#/components/schemas/OutputSourceConfig"
        },
        {
          "description": "A list of <code>OutputSource</code> objects, each of which contains fields <code>OutputS3Path</code>, <code>ApplyNormalization</code>, and <code>Output</code>."
        }
      ]
    },
    "resolutionTechniques": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ResolutionTechniques"
        },
        {
          "description": "An object which defines the <code>resolutionType</code> and the <code>ruleBasedProperties</code> "
        }
      ]
    },
    "roleArn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "description": "The Amazon Resource Name (ARN) of the IAM role. AWS Entity Resolution assumes this role to create resources on your behalf as part of workflow execution."
        }
      ]
    },
    "tags": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TagMap"
        },
        {
          "description": "The tags used to organize, track, or control access for this resource."
        }
      ]
    },
    "workflowName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/EntityName"
        },
        {
          "description": "The name of the workflow. There cannot be multiple <code>DataIntegrationWorkflows</code> with the same name."
        }
      ]
    }
  },
  "required": [
    "inputSourceConfig",
    "outputSourceConfig",
    "resolutionTechniques",
    "roleArn",
    "workflowName"
  ]
}