Describe Fhir Export Job
healthlake_describe_fhir_export_job | R Documentation |
Displays the properties of a FHIR export job, including the ID, ARN, name, and the status of the job¶
Description¶
Displays the properties of a FHIR export job, including the ID, ARN, name, and the status of the job.
Usage¶
Arguments¶
DatastoreId
[required] The AWS generated ID for the data store from which files are being exported from for an export job.
JobId
[required] The AWS generated ID for an export job.
Value¶
A list with the following syntax:
list(
ExportJobProperties = 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"
)
)