/AWS1/IF_HLL=>STARTFHIREXPORTJOB()¶
About StartFHIRExportJob¶
Start a FHIR export job.
Method Signature¶
METHODS /AWS1/IF_HLL~STARTFHIREXPORTJOB
IMPORTING
!IV_JOBNAME TYPE /AWS1/HLLJOBNAME OPTIONAL
!IO_OUTPUTDATACONFIG TYPE REF TO /AWS1/CL_HLLOUTPUTDATACONFIG OPTIONAL
!IV_DATASTOREID TYPE /AWS1/HLLDATASTOREID OPTIONAL
!IV_DATAACCESSROLEARN TYPE /AWS1/HLLIAMROLEARN OPTIONAL
!IV_CLIENTTOKEN TYPE /AWS1/HLLCLIENTTOKENSTRING OPTIONAL
RETURNING
VALUE(OO_OUTPUT) TYPE REF TO /aws1/cl_hllstartfhirexpjobrsp
RAISING
/AWS1/CX_HLLACCESSDENIEDEX
/AWS1/CX_HLLINTERNALSERVEREX
/AWS1/CX_HLLRESOURCENOTFOUNDEX
/AWS1/CX_HLLTHROTTLINGEX
/AWS1/CX_HLLVALIDATIONEX
/AWS1/CX_HLLCLIENTEXC
/AWS1/CX_HLLSERVEREXC
/AWS1/CX_RT_TECHNICAL_GENERIC
/AWS1/CX_RT_SERVICE_GENERIC.
IMPORTING¶
Required arguments:¶
io_outputdataconfig TYPE REF TO /AWS1/CL_HLLOUTPUTDATACONFIG /AWS1/CL_HLLOUTPUTDATACONFIG¶
The output data configuration supplied when the export job was started.
iv_datastoreid TYPE /AWS1/HLLDATASTOREID /AWS1/HLLDATASTOREID¶
The data store identifier from which files are being exported.
iv_dataaccessrolearn TYPE /AWS1/HLLIAMROLEARN /AWS1/HLLIAMROLEARN¶
The Amazon Resource Name (ARN) used during initiation of the export job.
Optional arguments:¶
iv_jobname TYPE /AWS1/HLLJOBNAME /AWS1/HLLJOBNAME¶
The export job name.
iv_clienttoken TYPE /AWS1/HLLCLIENTTOKENSTRING /AWS1/HLLCLIENTTOKENSTRING¶
An optional user provided token used for ensuring API idempotency.
RETURNING¶
oo_output TYPE REF TO /aws1/cl_hllstartfhirexpjobrsp /AWS1/CL_HLLSTARTFHIREXPJOBRSP¶
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->startfhirexportjob(
io_outputdataconfig = 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|
).
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.