Skip to main content

fhir_export_jobs

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

Overview

Namefhir_export_jobs
TypeResource
Idaws.healthlake.fhir_export_jobs

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
data_access_role_arnstringThe Amazon Resource Name (ARN) used during the initiation of the export job. (pattern: <code>arn:aws(-[^:]+)?:iam::[0-9]{12}:role/.+</code>)
datastore_idstringThe data store identifier from which files are being exported. (pattern: <code>([\p{L}\p{Z}\p{N}_.:/=+-%@]*)</code>)
end_timestring (date-time)The time the export job completed.
job_idstringThe export job identifier. (pattern: <code>([\p{L}\p{Z}\p{N}_.:/=+-%@]*)</code>)
job_namestringThe export job name. (pattern: <code>([\p{L}\p{Z}\p{N}_.:/=+-%@]*)</code>)
job_statusstringThe export 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 export job. (pattern: <code>([\p{L}\p{Z}\p{N}_.:/=+-%@]*)</code>)
output_data_configobjectThe output data configuration supplied when the export job was created.
submit_timestring (date-time)The time the export job was initiated.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
describe_fhir_export_jobselectregionGet FHIR export job properties.
list_fhir_export_jobsselectregionLists all FHIR export 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 FHIR export job properties.

SELECT
data_access_role_arn,
datastore_id,
end_time,
job_id,
job_name,
job_status,
message,
output_data_config,
submit_time
FROM aws.healthlake.fhir_export_jobs
WHERE region = '{{ region }}' -- required
;