Describe Fhir Export Job
| healthlake_describe_fhir_export_job | R Documentation |
Get FHIR export job properties¶
Description¶
Get FHIR export job properties.
Usage¶
healthlake_describe_fhir_export_job(DatastoreId, JobId)
Arguments¶
DatastoreId |
[required] The data store identifier from which FHIR data is being exported from. |
JobId |
[required] The export job identifier. |
Value¶
A list with the following syntax:
list(
ExportJobProperties = 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"
)
)
Request syntax¶
svc$describe_fhir_export_job(
DatastoreId = "string",
JobId = "string"
)