List Fhir Import Jobs
healthlake_list_fhir_import_jobs | R Documentation |
Lists all FHIR import jobs associated with an account and their statuses¶
Description¶
Lists 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] This parameter limits the response to the import job with the specified data store ID. |
NextToken |
A pagination token used to identify the next page of results to return for a ListFHIRImportJobs query. |
MaxResults |
This parameter limits the number of results returned for a ListFHIRImportJobs to a maximum quantity specified by the user. |
JobName |
This parameter limits the response to the import job with the specified job name. |
JobStatus |
This parameter limits the response to the import job with the specified job status. |
SubmittedBefore |
This parameter limits the response to FHIR import jobs submitted before a user specified date. |
SubmittedAfter |
This parameter 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"
)
),
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"
)
)