Application Discovery Service Start Export Task Request Structure

StartExportTaskRequest schema from Amazon Application Discovery Service API

Type: object Properties: 5
Amazon Application Discovery ServiceMigrationDiscoveryInfrastructure

Application Discovery Service Start Export Task Request Structure is a JSON Structure definition published by Amazon Application Discovery Service, describing 5 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

exportDataFormat filters startTime endTime preferences

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

JSON Structure

Raw ↑
{
  "type": "object",
  "description": "StartExportTaskRequest schema from Amazon Application Discovery Service API",
  "properties": {
    "exportDataFormat": {
      "type": "array",
      "description": "The file format for the returned export data. Default(s) are CSV. Note: The GRAPHML option has been deprecated.",
      "items": {
        "type": "string",
        "enum": [
          "CSV"
        ]
      },
      "example": [
        "CSV"
      ]
    },
    "filters": {
      "type": "array",
      "description": "If a filter is present, it selects the single agentId of the Application Discovery Agent for which data is exported.",
      "items": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string",
            "description": "A single ExportFilter name. Supported filters \u2014 agentIds.",
            "example": "agentIds"
          },
          "values": {
            "type": "array",
            "description": "A single agent ID for a Discovery Agent. An agent ID can be found using the DescribeAgents action.",
            "items": {
              "type": "string"
            },
            "example": [
              "d-agent-500123"
            ]
          },
          "condition": {
            "type": "string",
            "description": "Supported condition \u2014 EQUALS.",
            "example": "EQUALS"
          }
        },
        "required": [
          "name",
          "values",
          "condition"
        ]
      }
    },
    "startTime": {
      "type": "string",
      "description": "The start timestamp for exported data from the single Application Discovery Agent selected in the filters.",
      "example": "2026-04-01T00:00:00Z"
    },
    "endTime": {
      "type": "string",
      "description": "The end timestamp for exported data from the single Application Discovery Agent selected in the filters.",
      "example": "2026-04-19T23:59:59Z"
    },
    "preferences": {
      "type": "object",
      "description": "Indicates the type of agent export."
    }
  },
  "$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-export-task-request-structure.json"
}