Skip to main content

network_migration_analysis_results

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

Overview

Namenetwork_migration_analysis_results
TypeResource
Idaws.mgn.network_migration_analysis_results

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
analysis_resultstringThe detailed analysis findings and recommendations.
analyzer_typestringThe type of analyzer that generated this result. (REACHABILITY_ANALYZER)
job_idstringThe unique identifier of the analysis job that generated this result. (pattern: <code>[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}</code>)
network_migration_definition_idstringThe unique identifier of the network migration definition. (pattern: <code>nmd-[0-9a-zA-Z]{17}</code>)
network_migration_execution_idstringThe unique identifier of the network migration execution. (pattern: <code>[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}</code>)
sourceobjectThe source resource that was analyzed.
statusstringThe status of the analysis result. (PENDING, STARTED, SUCCEEDED, FAILED)
targetobjectThe target resource in the analysis.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_network_migration_analysis_resultsselectregionLists the results of network migration analyses, showing connectivity and compatibility findings for migrated resources.

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 the results of network migration analyses, showing connectivity and compatibility findings for migrated resources.

SELECT
analysis_result,
analyzer_type,
job_id,
network_migration_definition_id,
network_migration_execution_id,
source,
status,
target
FROM aws.mgn.network_migration_analysis_results
WHERE region = '{{ region }}' -- required
;