migration_task_updates
Creates, updates, deletes, gets or lists a migration_task_updates resource.
Overview
| Name | migration_task_updates |
| Type | Resource |
| Id | aws.mgh.migration_task_updates |
Fields
The following fields are returned by SELECT queries:
- list_migration_task_updates
| Name | Datatype | Description |
|---|---|---|
migration_task_state | object | Task object encapsulating task information. |
update_date_time | string (date-time) | The timestamp for the update. |
update_type | string | The type of the update. (MIGRATION_TASK_STATE_UPDATED) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_migration_task_updates | select | region | This is a paginated API that returns all the migration-task states for the specified MigrationTaskName and ProgressUpdateStream. |
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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- list_migration_task_updates
This is a paginated API that returns all the migration-task states for the specified MigrationTaskName and ProgressUpdateStream.
SELECT
migration_task_state,
update_date_time,
update_type
FROM aws.mgh.migration_task_updates
WHERE region = '{{ region }}' -- required
;