Skip to main content

migration_task_updates

Creates, updates, deletes, gets or lists a migration_task_updates resource.

Overview

Namemigration_task_updates
TypeResource
Idaws.mgh.migration_task_updates

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
migration_task_stateobjectTask object encapsulating task information.
update_date_timestring (date-time)The timestamp for the update.
update_typestringThe type of the update. (MIGRATION_TASK_STATE_UPDATED)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_migration_task_updatesselectregionThis 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.

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

SELECT examples

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
;