import_file_enrichments
Creates, updates, deletes, gets or lists an import_file_enrichments resource.
Overview
| Name | import_file_enrichments |
| Type | Resource |
| Id | aws.mgn.import_file_enrichments |
Fields
The following fields are returned by SELECT queries:
- list_import_file_enrichments
| Name | Datatype | Description |
|---|---|---|
checksum | object | The checksum of the enriched file for integrity verification. |
created_at | string (date-time) | The timestamp when the enrichment job was created. |
ended_at | string (date-time) | The timestamp when the enrichment job completed or failed. |
job_id | string | The unique identifier of the import file enrichment job. (pattern: <code>[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}</code>) |
s_3_bucket_target | object | The target S3 configuration for the enriched import file. |
status | string | The current status of the import file enrichment job. (PENDING, STARTED, FAILED, SUCCEEDED, SUCCEEDED_WITH_WARNINGS) |
status_details | string | Detailed status information about the enrichment job. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_import_file_enrichments | select | region | Lists import file enrichment jobs with optional filtering by job IDs. |
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_file_enrichments
Lists import file enrichment jobs with optional filtering by job IDs.
SELECT
checksum,
created_at,
ended_at,
job_id,
s_3_bucket_target,
status,
status_details
FROM aws.mgn.import_file_enrichments
WHERE region = '{{ region }}' -- required
;