Skip to content

Describe Fhir Import Job

healthlake_describe_fhir_import_job R Documentation

Displays the properties of a FHIR import job, including the ID, ARN, name, and the status of the job

Description

Displays the properties of a FHIR import job, including the ID, ARN, name, and the status of the job.

Usage

healthlake_describe_fhir_import_job(DatastoreId, JobId)

Arguments

DatastoreId

[required] The AWS-generated ID of the data store.

JobId

[required] The AWS-generated job ID.

Value

A list with the following syntax:

list(
  ImportJobProperties = list(
    JobId = "string",
    JobName = "string",
    JobStatus = "SUBMITTED"|"IN_PROGRESS"|"COMPLETED_WITH_ERRORS"|"COMPLETED"|"FAILED"|"CANCEL_SUBMITTED"|"CANCEL_IN_PROGRESS"|"CANCEL_COMPLETED"|"CANCEL_FAILED",
    SubmitTime = as.POSIXct(
      "2015-01-01"
    ),
    EndTime = as.POSIXct(
      "2015-01-01"
    ),
    DatastoreId = "string",
    InputDataConfig = list(
      S3Uri = "string"
    ),
    JobOutputDataConfig = list(
      S3Configuration = list(
        S3Uri = "string",
        KmsKeyId = "string"
      )
    ),
    JobProgressReport = list(
      TotalNumberOfScannedFiles = 123,
      TotalSizeOfScannedFilesInMB = 123.0,
      TotalNumberOfImportedFiles = 123,
      TotalNumberOfResourcesScanned = 123,
      TotalNumberOfResourcesImported = 123,
      TotalNumberOfResourcesWithCustomerError = 123,
      TotalNumberOfFilesReadWithCustomerError = 123,
      Throughput = 123.0
    ),
    DataAccessRoleArn = "string",
    Message = "string"
  )
)

Request syntax

svc$describe_fhir_import_job(
  DatastoreId = "string",
  JobId = "string"
)