Skip to main content

fhir_import_jobs

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

Overview

Namefhir_import_jobs
TypeResource
Idaws.healthlake.fhir_import_jobs

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
data_access_role_arnstringThe Amazon Resource Name (ARN) that grants AWS HealthLake access to the input data. (pattern: <code>arn:aws(-[^:]+)?:iam::[0-9]{12}:role/.+</code>)
datastore_idstringThe data store identifier. (pattern: <code>([\p{L}\p{Z}\p{N}_.:/=+-%@]*)</code>)
end_timestring (date-time)The time the import job was completed.
input_data_configobjectThe input data configuration supplied when the import job was created.
job_idstringThe import job identifier. (pattern: <code>([\p{L}\p{Z}\p{N}_.:/=+-%@]*)</code>)
job_namestringThe import job name. (pattern: <code>([\p{L}\p{Z}\p{N}_.:/=+-%@]*)</code>)
job_output_data_configobjectThe output data configuration supplied when the export job was created.
job_progress_reportobjectDisplays the progress of the import job, including total resources scanned, total resources imported, and total size of data imported.
job_statusstringThe import job status. (SUBMITTED, QUEUED, IN_PROGRESS, COMPLETED_WITH_ERRORS, COMPLETED, FAILED, CANCEL_SUBMITTED, CANCEL_IN_PROGRESS, CANCEL_COMPLETED, CANCEL_FAILED)
messagestringAn explanation of any errors that might have occurred during the FHIR import job. (pattern: <code>([\p{L}\p{Z}\p{N}_.:/=+-%@]*)</code>)
submit_timestring (date-time)The time the import job was submitted for processing.
validation_levelstringThe validation level of the import job. (strict, structure-only, minimal)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
describe_fhir_import_jobselectregionGet the import job properties to learn more about the job or job progress.
list_fhir_import_jobsselectregionList all FHIR import jobs associated with an account and their statuses.

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

Get the import job properties to learn more about the job or job progress.

SELECT
data_access_role_arn,
datastore_id,
end_time,
input_data_config,
job_id,
job_name,
job_output_data_config,
job_progress_report,
job_status,
message,
submit_time,
validation_level
FROM aws.healthlake.fhir_import_jobs
WHERE region = '{{ region }}' -- required
;