Skip to content

List Fhir Export Jobs

healthlake_list_fhir_export_jobs R Documentation

Lists all FHIR export jobs associated with an account and their statuses

Description

Lists all FHIR export jobs associated with an account and their statuses.

Usage

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

Arguments

DatastoreId

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

NextToken

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

MaxResults

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

JobName

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

JobStatus

Limits the response to export jobs with the specified job status.

SubmittedBefore

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

SubmittedAfter

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

Value

A list with the following syntax:

list(
  ExportJobPropertiesList = 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",
      OutputDataConfig = list(
        S3Configuration = list(
          S3Uri = "string",
          KmsKeyId = "string"
        )
      ),
      DataAccessRoleArn = "string",
      Message = "string"
    )
  ),
  NextToken = "string"
)

Request syntax

svc$list_fhir_export_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"
  )
)