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] This parameter limits the response to the export job with the specified data store ID.
NextTokenA pagination token used to identify the next page of results to return for a ListFHIRExportJobs query.
MaxResultsThis parameter limits the number of results returned for a ListFHIRExportJobs to a maximum quantity specified by the user.
JobNameThis parameter limits the response to the export job with the specified job name.
JobStatusThis parameter limits the response to the export jobs with the specified job status.
SubmittedBeforeThis parameter limits the response to FHIR export jobs submitted before a user specified date.
SubmittedAfterThis parameter 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"|"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"|"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"
)
)