Skip to content

List Fhir Import Jobs

healthlake_list_fhir_import_jobs R Documentation

List all FHIR import jobs associated with an account and their statuses

Description

List all FHIR import jobs associated with an account and their statuses.

Usage

healthlake_list_fhir_import_jobs(DatastoreId, NextToken, MaxResults,
  JobName, JobStatus, SubmittedBefore, SubmittedAfter)

Arguments

DatastoreId

[required] Limits the response to the import job with the specified data store ID.

NextToken

The pagination token used to identify the next page of results to return.

MaxResults

Limits the number of results returned for list_fhir_import_jobs to a maximum quantity specified by the user.

JobName

Limits the response to the import job with the specified job name.

JobStatus

Limits the response to the import job with the specified job status.

SubmittedBefore

Limits the response to FHIR import jobs submitted before a user- specified date.

SubmittedAfter

Limits the response to FHIR import jobs submitted after a user-specified date.

Value

A list with the following syntax:

list(
  ImportJobPropertiesList = list(
    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"
    )
  ),
  NextToken = "string"
)

Request syntax

svc$list_fhir_import_jobs(
  DatastoreId = "string",
  NextToken = "string",
  MaxResults = 123,
  JobName = "string",
  JobStatus = "SUBMITTED"|"QUEUED"|"IN_PROGRESS"|"COMPLETED_WITH_ERRORS"|"COMPLETED"|"FAILED"|"CANCEL_SUBMITTED"|"CANCEL_IN_PROGRESS"|"CANCEL_COMPLETED"|"CANCEL_FAILED",
  SubmittedBefore = as.POSIXct(
    "2015-01-01"
  ),
  SubmittedAfter = as.POSIXct(
    "2015-01-01"
  )
)