Skip to main content

application_states

Creates, updates, deletes, gets or lists an application_states resource.

Overview

Nameapplication_states
TypeResource
Idaws.mgh.application_states

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
application_statusstringStatus of the application - Not Started, In-Progress, Complete. (NOT_STARTED, IN_PROGRESS, COMPLETED)
last_updated_timestring (date-time)The timestamp when the application status was last updated.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
describe_application_stateselectregionGets the migration status of an application.
list_application_statesselectregionLists all the migration statuses for your applications. If you use the optional ApplicationIds parameter, only the migration statuses for those applications will be returned.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

Gets the migration status of an application.

SELECT
application_status,
last_updated_time
FROM aws.mgh.application_states
WHERE region = '{{ region }}' -- required
;