Skip to content

Start Fhir Import Job

healthlake_start_fhir_import_job R Documentation

Start importing bulk FHIR data into an ACTIVE data store

Description

Start importing bulk FHIR data into an ACTIVE data store. The import job imports FHIR data found in the InputDataConfig object and stores processing results in the JobOutputDataConfig object.

Usage

healthlake_start_fhir_import_job(JobName, InputDataConfig,
  JobOutputDataConfig, DatastoreId, DataAccessRoleArn, ClientToken,
  ValidationLevel)

Arguments

JobName

The import job name.

InputDataConfig

[required] The input properties for the import job request.

JobOutputDataConfig

[required] The output data configuration supplied when the export job was created.

DatastoreId

[required] The data store identifier.

DataAccessRoleArn

[required] The Amazon Resource Name (ARN) that grants access permission to AWS HealthLake.

ClientToken

The optional user-provided token used for ensuring API idempotency.

ValidationLevel

The validation level of the import job.

Value

A list with the following syntax:

list(
  JobId = "string",
  JobStatus = "SUBMITTED"|"QUEUED"|"IN_PROGRESS"|"COMPLETED_WITH_ERRORS"|"COMPLETED"|"FAILED"|"CANCEL_SUBMITTED"|"CANCEL_IN_PROGRESS"|"CANCEL_COMPLETED"|"CANCEL_FAILED",
  DatastoreId = "string"
)

Request syntax

svc$start_fhir_import_job(
  JobName = "string",
  InputDataConfig = list(
    S3Uri = "string"
  ),
  JobOutputDataConfig = list(
    S3Configuration = list(
      S3Uri = "string",
      KmsKeyId = "string"
    )
  ),
  DatastoreId = "string",
  DataAccessRoleArn = "string",
  ClientToken = "string",
  ValidationLevel = "strict"|"structure-only"|"minimal"
)