ListMigrationTasksResult

ListMigrationTasksResult schema from Amazon Migration Hub API

BroadcastingMedia ProcessingMedia

Properties

Name Type Description
NextToken object
MigrationTaskSummaryList object
View JSON Schema on GitHub

JSON Schema

migration-hub-api-list-migration-tasks-result-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-migration-hub/refs/heads/main/json-schema/migration-hub-api-list-migration-tasks-result-schema.json",
  "title": "ListMigrationTasksResult",
  "description": "ListMigrationTasksResult schema from Amazon Migration Hub API",
  "type": "object",
  "properties": {
    "NextToken": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Token"
        },
        {
          "description": "If there are more migration tasks than the max result, return the next token to be passed to the next call as a bookmark of where to start from."
        }
      ]
    },
    "MigrationTaskSummaryList": {
      "allOf": [
        {
          "$ref": "#/components/schemas/MigrationTaskSummaryList"
        },
        {
          "description": "Lists the migration task's summary which includes: <code>MigrationTaskName</code>, <code>ProgressPercent</code>, <code>ProgressUpdateStream</code>, <code>Status</code>, and the <code>UpdateDateTime</code> for each task."
        }
      ]
    }
  }
}