fhir_import_jobs
Creates, updates, deletes, gets or lists a fhir_import_jobs resource.
Overview
| Name | fhir_import_jobs |
| Type | Resource |
| Id | aws.healthlake.fhir_import_jobs |
Fields
The following fields are returned by SELECT queries:
- describe_fhir_import_job
- list_fhir_import_jobs
| Name | Datatype | Description |
|---|---|---|
data_access_role_arn | string | The Amazon Resource Name (ARN) that grants AWS HealthLake access to the input data. (pattern: <code>arn:aws(-[^:]+)?:iam::[0-9]{12}:role/.+</code>) |
datastore_id | string | The data store identifier. (pattern: <code>([\p{L}\p{Z}\p{N}_.:/=+-%@]*)</code>) |
end_time | string (date-time) | The time the import job was completed. |
input_data_config | object | The input data configuration supplied when the import job was created. |
job_id | string | The import job identifier. (pattern: <code>([\p{L}\p{Z}\p{N}_.:/=+-%@]*)</code>) |
job_name | string | The import job name. (pattern: <code>([\p{L}\p{Z}\p{N}_.:/=+-%@]*)</code>) |
job_output_data_config | object | The output data configuration supplied when the export job was created. |
job_progress_report | object | Displays the progress of the import job, including total resources scanned, total resources imported, and total size of data imported. |
job_status | string | The import job status. (SUBMITTED, QUEUED, IN_PROGRESS, COMPLETED_WITH_ERRORS, COMPLETED, FAILED, CANCEL_SUBMITTED, CANCEL_IN_PROGRESS, CANCEL_COMPLETED, CANCEL_FAILED) |
message | string | An explanation of any errors that might have occurred during the FHIR import job. (pattern: <code>([\p{L}\p{Z}\p{N}_.:/=+-%@]*)</code>) |
submit_time | string (date-time) | The time the import job was submitted for processing. |
validation_level | string | The validation level of the import job. (strict, structure-only, minimal) |
| Name | Datatype | Description |
|---|---|---|
import_job_properties_list | array | The properties for listed import jobs. |
next_token | string | The pagination token used to identify the next page of results to return. (pattern: <code>\p{ASCII}{0,8192}</code>) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
describe_fhir_import_job | select | region | Get the import job properties to learn more about the job or job progress. | |
list_fhir_import_jobs | select | region | List 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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- describe_fhir_import_job
- list_fhir_import_jobs
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
;
List all FHIR import jobs associated with an account and their statuses.
SELECT
import_job_properties_list,
next_token
FROM aws.healthlake.fhir_import_jobs
WHERE region = '{{ region }}' -- required
;