/AWS1/IF_IOT=>STARTTHINGREGISTRATIONTASK()¶
About StartThingRegistrationTask¶
Creates a bulk thing provisioning task.
Requires permission to access the StartThingRegistrationTask action.
Method Signature¶
METHODS /AWS1/IF_IOT~STARTTHINGREGISTRATIONTASK
IMPORTING
!IV_TEMPLATEBODY TYPE /AWS1/IOTTEMPLATEBODY OPTIONAL
!IV_INPUTFILEBUCKET TYPE /AWS1/IOTREGISTRYS3BUCKETNAME OPTIONAL
!IV_INPUTFILEKEY TYPE /AWS1/IOTREGISTRYS3KEYNAME OPTIONAL
!IV_ROLEARN TYPE /AWS1/IOTROLEARN OPTIONAL
RETURNING
VALUE(OO_OUTPUT) TYPE REF TO /aws1/cl_iotstartthgregtaskrsp
RAISING
/AWS1/CX_IOTINTERNALFAILUREEX
/AWS1/CX_IOTINVALIDREQUESTEX
/AWS1/CX_IOTTHROTTLINGEX
/AWS1/CX_IOTUNAUTHORIZEDEX
/AWS1/CX_IOTCLIENTEXC
/AWS1/CX_IOTSERVEREXC
/AWS1/CX_RT_TECHNICAL_GENERIC
/AWS1/CX_RT_SERVICE_GENERIC.
IMPORTING¶
Required arguments:¶
iv_templatebody TYPE /AWS1/IOTTEMPLATEBODY /AWS1/IOTTEMPLATEBODY¶
The provisioning template.
iv_inputfilebucket TYPE /AWS1/IOTREGISTRYS3BUCKETNAME /AWS1/IOTREGISTRYS3BUCKETNAME¶
The S3 bucket that contains the input file.
iv_inputfilekey TYPE /AWS1/IOTREGISTRYS3KEYNAME /AWS1/IOTREGISTRYS3KEYNAME¶
The name of input file within the S3 bucket. This file contains a newline delimited JSON file. Each line contains the parameter values to provision one device (thing).
iv_rolearn TYPE /AWS1/IOTROLEARN /AWS1/IOTROLEARN¶
The IAM role ARN that grants permission the input file.
RETURNING¶
oo_output TYPE REF TO /aws1/cl_iotstartthgregtaskrsp /AWS1/CL_IOTSTARTTHGREGTASKRSP¶
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->startthingregistrationtask(
iv_inputfilebucket = |string|
iv_inputfilekey = |string|
iv_rolearn = |string|
iv_templatebody = |string|
).
This is an example of reading all possible response values
lo_result = lo_result.
IF lo_result IS NOT INITIAL.
lv_taskid = lo_result->get_taskid( ).
ENDIF.