Skip to main content

network_migration_executions

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

Overview

Namenetwork_migration_executions
TypeResource
Idaws.mgn.network_migration_executions

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
activitystringThe current activity being performed in the execution. (MAPPING, MAPPING_UPDATE, CODE_GENERATION, DEPLOY, DEPLOYED_STACKS_DELETION, ANALYZE)
created_atstring (date-time)The timestamp when the execution was created.
network_migration_definition_idstringThe unique identifier of the network migration definition used by this execution. (pattern: <code>nmd-[0-9a-zA-Z]{17}</code>)
network_migration_execution_idstringThe 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>)
stagestringThe current stage of the execution in the migration workflow. (MAPPING, CODE_GENERATION, DEPLOY, DEPLOYED_STACKS_DELETION, ANALYZE)
statusstringThe current status of the execution. (PENDING, STARTED, SUCCEEDED, FAILED)
tagsobjectTags assigned to the execution.
updated_atstring (date-time)The timestamp when the execution was last updated.

Methods

The following methods are available for this resource:

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

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

SELECT examples

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
;