Skip to content

Describe Fhir Import Job

healthlake_describe_fhir_import_job R Documentation

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

Description

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

Usage

healthlake_describe_fhir_import_job(DatastoreId, JobId)

Arguments

DatastoreId

[required] The data store identifier.

JobId

[required] The import job identifier.

Value

A list with the following syntax:

list(
  ImportJobProperties = list(
    JobId = "string",
    JobName = "string",
    JobStatus = "SUBMITTED"|"QUEUED"|"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",
    ValidationLevel = "strict"|"structure-only"|"minimal"
  )
)

Request syntax

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