{
  "Comment": "Synchronizes animal_with_age to animal_with_year.",
  "version": "1.0",
  "StartAt": "SynchronizingTable",
  "instigators": [
    "user"
  ],
  "States": {
    "SynchronizingTable": {
      "Type": "Task",
      "InputPath": "$.outputDir",
      "Resource": "module:synchronizingTable",
      "ResourceConfig": {
        "transformerFunctionName": "tymlyTest_animalConverter",
        "source": {
          "tableName": "tymly_test.animal_with_age",
          "hashSumColumnName": "hash_sum"
        },
        "target": {
          "tableName": "tymly_test.animal_with_year",
          "hashSumColumnName": "origin_hash_sum"
        },
        "join": {
          "animal": "animal"
        }
      },
      "End": true
    }
  },
  "restrictions": [
    {
      "roleId": "$everyone",
      "allows": [
        "*"
      ]
    }
  ]
}