action amazonaws_notify_application_state { label: "NotifyApplicationState" description: "Sets the migration state of an application. For a given application identified by the value passed to ApplicationId, its status is set or updated by passing one of three values to Status: NOT_STARTED | IN_PROGRESS | COMPLETED." provider: amazonaws method: POST path: "/#X-Amz-Target=AWSMigrationHub.NotifyApplicationState" encoding: json input: { type: "object" properties: { ApplicationId: { type: "object" } DryRun: { type: "object" } Status: { type: "object" } UpdateDateTime: { type: "object" } "X-Amz-Target": { type: "string" enum: ["AWSMigrationHub.NotifyApplicationState"] } } required: ["ApplicationId", "Status", "X-Amz-Target"] additionalProperties: false } output: { type: "object" properties: {} } }