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:

" 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" } } } }