import_errors
Creates, updates, deletes, gets or lists an import_errors resource.
Overview
| Name | import_errors |
| Type | Resource |
| Id | aws.mgn.import_errors |
Fields
The following fields are returned by SELECT queries:
- list_import_errors
| Name | Datatype | Description |
|---|---|---|
error_data | object | Import task error data. |
error_date_time | string | Import task error datetime. (pattern: <code>[1-9][0-9]*-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[01])T([0-1][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9](.[0-9]+)?Z</code>) |
error_type | string | Import task error type. (VALIDATION_ERROR, PROCESSING_ERROR) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_import_errors | select | region | List import errors. |
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_import_errors
List import errors.
SELECT
error_data,
error_date_time,
error_type
FROM aws.mgn.import_errors
WHERE region = '{{ region }}' -- required
;