network_migration_executions
Creates, updates, deletes, gets or lists a network_migration_executions resource.
Overview
| Name | network_migration_executions |
| Type | Resource |
| Id | aws.mgn.network_migration_executions |
Fields
The following fields are returned by SELECT queries:
- list_network_migration_executions
| Name | Datatype | Description |
|---|---|---|
activity | string | The current activity being performed in the execution. (MAPPING, MAPPING_UPDATE, CODE_GENERATION, DEPLOY, DEPLOYED_STACKS_DELETION, ANALYZE) |
created_at | string (date-time) | The timestamp when the execution was created. |
network_migration_definition_id | string | The unique identifier of the network migration definition used by this execution. (pattern: <code>nmd-[0-9a-zA-Z]{17}</code>) |
network_migration_execution_id | string | The unique identifier of the execution. (pattern: <code>[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}</code>) |
stage | string | The current stage of the execution in the migration workflow. (MAPPING, CODE_GENERATION, DEPLOY, DEPLOYED_STACKS_DELETION, ANALYZE) |
status | string | The current status of the execution. (PENDING, STARTED, SUCCEEDED, FAILED) |
tags | object | Tags assigned to the execution. |
updated_at | string (date-time) | The timestamp when the execution was last updated. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_network_migration_executions | select | region | Lists network migration execution instances for a given definition, showing the status and progress of each execution. |
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_network_migration_executions
Lists network migration execution instances for a given definition, showing the status and progress of each execution.
SELECT
activity,
created_at,
network_migration_definition_id,
network_migration_execution_id,
stage,
status,
tags,
updated_at
FROM aws.mgn.network_migration_executions
WHERE region = '{{ region }}' -- required
;