Start Fhir Export Job
healthlake_start_fhir_export_job | R Documentation |
Begins a FHIR export job¶
Description¶
Begins a FHIR export job.
Usage¶
healthlake_start_fhir_export_job(JobName, OutputDataConfig, DatastoreId,
DataAccessRoleArn, ClientToken)
Arguments¶
JobName |
The user generated name for an export job. |
OutputDataConfig |
[required] The output data configuration that was supplied when the export job was created. |
DatastoreId |
[required] The AWS generated ID for the data store from which files are being exported for an export job. |
DataAccessRoleArn |
[required] The Amazon Resource Name used during the initiation of the job. |
ClientToken |
An optional user provided token used for ensuring idempotency. |
Value¶
A list with the following syntax:
list(
JobId = "string",
JobStatus = "SUBMITTED"|"QUEUED"|"IN_PROGRESS"|"COMPLETED_WITH_ERRORS"|"COMPLETED"|"FAILED"|"CANCEL_SUBMITTED"|"CANCEL_IN_PROGRESS"|"CANCEL_COMPLETED"|"CANCEL_FAILED",
DatastoreId = "string"
)
Request syntax¶
svc$start_fhir_export_job(
JobName = "string",
OutputDataConfig = list(
S3Configuration = list(
S3Uri = "string",
KmsKeyId = "string"
)
),
DatastoreId = "string",
DataAccessRoleArn = "string",
ClientToken = "string"
)