network_migration_analysis_results
Creates, updates, deletes, gets or lists a network_migration_analysis_results resource.
Overview
| Name | network_migration_analysis_results |
| Type | Resource |
| Id | aws.mgn.network_migration_analysis_results |
Fields
The following fields are returned by SELECT queries:
- list_network_migration_analysis_results
| Name | Datatype | Description |
|---|---|---|
analysis_result | string | The detailed analysis findings and recommendations. |
analyzer_type | string | The type of analyzer that generated this result. (REACHABILITY_ANALYZER) |
job_id | string | The 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_id | string | The unique identifier of the network migration definition. (pattern: <code>nmd-[0-9a-zA-Z]{17}</code>) |
network_migration_execution_id | string | The 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>) |
source | object | The source resource that was analyzed. |
status | string | The status of the analysis result. (PENDING, STARTED, SUCCEEDED, FAILED) |
target | object | The target resource in the analysis. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_network_migration_analysis_results | select | region | Lists 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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- list_network_migration_analysis_results
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
;