MatchingWorkflowSummary

A list of MatchingWorkflowSummary objects, each of which contain the fields WorkflowName, WorkflowArn, CreatedAt, UpdatedAt.

Amazon Web ServicesData IntegrationData MatchingEntity ResolutionMachine-Learning

Properties

Name Type Description
createdAt object
updatedAt object
workflowArn object
workflowName object
View JSON Schema on GitHub

JSON Schema

amazon-entity-resolution-matching-workflow-summary-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-matching-workflow-summary-schema.json",
  "title": "MatchingWorkflowSummary",
  "description": "A list of <code>MatchingWorkflowSummary</code> objects, each of which contain the fields <code>WorkflowName</code>, <code>WorkflowArn</code>, <code>CreatedAt</code>, <code>UpdatedAt</code>.",
  "type": "object",
  "properties": {
    "createdAt": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Timestamp"
        },
        {
          "description": "The timestamp of when the workflow was created."
        }
      ]
    },
    "updatedAt": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Timestamp"
        },
        {
          "description": "The timestamp of when the workflow was last updated."
        }
      ]
    },
    "workflowArn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/MatchingWorkflowArn"
        },
        {
          "description": "The ARN (Amazon Resource Name) that Entity Resolution generated for the <code>MatchingWorkflow</code>."
        }
      ]
    },
    "workflowName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/EntityName"
        },
        {
          "description": "The name of the workflow."
        }
      ]
    }
  },
  "required": [
    "createdAt",
    "updatedAt",
    "workflowArn",
    "workflowName"
  ]
}