/AWS1/IF_HLL=>STARTFHIRIMPORTJOB()
¶
About StartFHIRImportJob¶
Start importing bulk FHIR data into an ACTIVE data store. The import job imports FHIR
data found in the InputDataConfig
object and stores processing results in the
JobOutputDataConfig
object.
Method Signature¶
IMPORTING¶
Required arguments:¶
io_inputdataconfig
TYPE REF TO /AWS1/CL_HLLINPUTDATACONFIG
/AWS1/CL_HLLINPUTDATACONFIG
¶
The input properties for the import job request.
io_joboutputdataconfig
TYPE REF TO /AWS1/CL_HLLOUTPUTDATACONFIG
/AWS1/CL_HLLOUTPUTDATACONFIG
¶
JobOutputDataConfig
iv_datastoreid
TYPE /AWS1/HLLDATASTOREID
/AWS1/HLLDATASTOREID
¶
The data store identifier.
iv_dataaccessrolearn
TYPE /AWS1/HLLIAMROLEARN
/AWS1/HLLIAMROLEARN
¶
The Amazon Resource Name (ARN) that grants access permission to AWS HealthLake.
Optional arguments:¶
iv_jobname
TYPE /AWS1/HLLJOBNAME
/AWS1/HLLJOBNAME
¶
The import job name.
iv_clienttoken
TYPE /AWS1/HLLCLIENTTOKENSTRING
/AWS1/HLLCLIENTTOKENSTRING
¶
The optional user-provided token used for ensuring API idempotency.
iv_validationlevel
TYPE /AWS1/HLLVALIDATIONLEVEL
/AWS1/HLLVALIDATIONLEVEL
¶
The validation level of the import job.
RETURNING¶
oo_output
TYPE REF TO /aws1/cl_hllstartfhirimpjobrsp
/AWS1/CL_HLLSTARTFHIRIMPJOBRSP
¶
Domain /AWS1/RT_ACCOUNT_ID Primitive Type NUMC
Examples¶
Syntax Example¶
This is an example of the syntax for calling the method. It includes every possible argument and initializes every possible value. The data provided is not necessarily semantically accurate (for example the value "string" may be provided for something that is intended to be an instance ID, or in some cases two arguments may be mutually exclusive). The syntax shows the ABAP syntax for creating the various data structures.
DATA(lo_result) = lo_client->/aws1/if_hll~startfhirimportjob(
io_inputdataconfig = new /aws1/cl_hllinputdataconfig( |string| )
io_joboutputdataconfig = new /aws1/cl_hlloutputdataconfig(
io_s3configuration = new /aws1/cl_hlls3configuration(
iv_kmskeyid = |string|
iv_s3uri = |string|
)
)
iv_clienttoken = |string|
iv_dataaccessrolearn = |string|
iv_datastoreid = |string|
iv_jobname = |string|
iv_validationlevel = |string|
).
This is an example of reading all possible response values
lo_result = lo_result.
IF lo_result IS NOT INITIAL.
lv_jobid = lo_result->get_jobid( ).
lv_jobstatus = lo_result->get_jobstatus( ).
lv_datastoreid = lo_result->get_datastoreid( ).
ENDIF.