Job

A Data Exchange job for importing or exporting assets.

Data ExchangeData MarketplaceThird-Party DataAnalyticsSubscriptions

Properties

Name Type Description
Id string
Arn string
Type string
State string
Details object
Errors array
CreatedAt string
UpdatedAt string
View JSON Schema on GitHub

JSON Schema

job-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/amazon-data-exchange/json-schema/job-schema.json",
  "title": "Job",
  "description": "A Data Exchange job for importing or exporting assets.",
  "type": "object",
  "properties": {
    "Id": {
      "type": "string"
    },
    "Arn": {
      "type": "string"
    },
    "Type": {
      "type": "string"
    },
    "State": {
      "type": "string",
      "enum": [
        "WAITING",
        "IN_PROGRESS",
        "ERROR",
        "COMPLETED",
        "CANCELLED",
        "TIMED_OUT"
      ]
    },
    "Details": {
      "type": "object"
    },
    "Errors": {
      "type": "array"
    },
    "CreatedAt": {
      "type": "string",
      "format": "date-time"
    },
    "UpdatedAt": {
      "type": "string",
      "format": "date-time"
    }
  }
}