action amazonaws_list_application_states { label: "ListApplicationStates" description: "Lists all the migration statuses for your applications. If you use the optional ApplicationIds parameter, only the migration statuses for those applications will be returned." provider: amazonaws method: POST path: "/#X-Amz-Target=AWSMigrationHub.ListApplicationStates" encoding: json input: { type: "object" properties: { ApplicationIds: { type: "object" } MaxResults: { type: "string" } NextToken: { type: "string" } "X-Amz-Target": { type: "string" enum: ["AWSMigrationHub.ListApplicationStates"] } } required: ["X-Amz-Target"] additionalProperties: false } output: { type: "object" properties: { ApplicationStateList: { type: "object" } NextToken: { type: "object" } } } }