action amazonaws_list_migration_tasks {
label: "ListMigrationTasks"
description: "
Lists all, or filtered by resource name, migration tasks associated with the user account making this call. This API has the following traits:
-
Can show a summary list of the most recent migration tasks.
-
Can show a summary list of migration tasks associated with a given discovered resource.
-
Lists migration tasks in a paginated interface.
"
provider: amazonaws
method: POST
path: "/#X-Amz-Target=AWSMigrationHub.ListMigrationTasks"
encoding: json
input: {
type: "object"
properties: {
MaxResults: {
type: "string"
}
NextToken: {
type: "string"
}
ResourceName: {
type: "object"
}
"X-Amz-Target": {
type: "string"
enum: ["AWSMigrationHub.ListMigrationTasks"]
}
}
required: ["X-Amz-Target"]
additionalProperties: false
}
output: {
type: "object"
properties: {
MigrationTaskSummaryList: {
type: "object"
}
NextToken: {
type: "object"
}
}
}
}