BatchDeleteImportDataError

BatchDeleteImportDataError schema from Amazon Application Discovery Service API

Amazon Application Discovery ServiceMigrationDiscoveryInfrastructure

Properties

Name Type Description
importTaskId string The unique import ID associated with the error that occurred.
errorCode string The type of error that occurred for a specific import task.
errorDescription string The description of the error that occurred for a specific import task.
View JSON Schema on GitHub

JSON Schema

application-discovery-service-batch-delete-import-data-error-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-application-discovery-service/refs/heads/main/json-schema/application-discovery-service-batch-delete-import-data-error-schema.json",
  "title": "BatchDeleteImportDataError",
  "description": "BatchDeleteImportDataError schema from Amazon Application Discovery Service API",
  "type": "object",
  "properties": {
    "importTaskId": {
      "type": "string",
      "example": "import-task-500123",
      "description": "The unique import ID associated with the error that occurred."
    },
    "errorCode": {
      "type": "string",
      "example": "NOT_FOUND",
      "description": "The type of error that occurred for a specific import task."
    },
    "errorDescription": {
      "type": "string",
      "example": "Import task not found",
      "description": "The description of the error that occurred for a specific import task."
    }
  }
}