Application Discovery Service Start Import Task Request Structure

StartImportTaskRequest schema from Amazon Application Discovery Service API

Type: object Properties: 3 Required: 2
Amazon Application Discovery ServiceMigrationDiscoveryInfrastructure

Application Discovery Service Start Import Task Request Structure is a JSON Structure definition published by Amazon Application Discovery Service, describing 3 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

clientRequestToken name importUrl

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "type": "object",
  "description": "StartImportTaskRequest schema from Amazon Application Discovery Service API",
  "properties": {
    "clientRequestToken": {
      "type": "string",
      "description": "Optional. A unique token that you can provide to prevent the same import request from occurring more than once.",
      "example": "client-token-500123"
    },
    "name": {
      "type": "string",
      "description": "A descriptive name for this request. You can use this name to filter future requests related to this import task, such as identifying applications and servers that were included in this import task.",
      "maxLength": 255,
      "example": "Server Inventory Import April 2026"
    },
    "importUrl": {
      "type": "string",
      "description": "The URL for your import file that you've uploaded to Amazon S3.",
      "example": "s3://my-bucket/server-inventory.csv"
    }
  },
  "required": [
    "name",
    "importUrl"
  ],
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-application-discovery-service/refs/heads/main/json-structure/application-discovery-service-start-import-task-request-structure.json"
}