Skip to main content

import_file_enrichments

Creates, updates, deletes, gets or lists an import_file_enrichments resource.

Overview

Nameimport_file_enrichments
TypeResource
Idaws.mgn.import_file_enrichments

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
checksumobjectThe checksum of the enriched file for integrity verification.
created_atstring (date-time)The timestamp when the enrichment job was created.
ended_atstring (date-time)The timestamp when the enrichment job completed or failed.
job_idstringThe 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_targetobjectThe target S3 configuration for the enriched import file.
statusstringThe current status of the import file enrichment job. (PENDING, STARTED, FAILED, SUCCEEDED, SUCCEEDED_WITH_WARNINGS)
status_detailsstringDetailed status information about the enrichment job.

Methods

The following methods are available for this resource:

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

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

SELECT examples

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
;