/AWS1/CL_EMR=>LISTBOOTSTRAPACTIONS()
¶
About ListBootstrapActions¶
Provides information about the bootstrap actions associated with a cluster.
Method Signature¶
IMPORTING¶
Required arguments:¶
iv_clusterid
TYPE /AWS1/EMRCLUSTERID
/AWS1/EMRCLUSTERID
¶
The cluster identifier for the bootstrap actions to list.
Optional arguments:¶
iv_marker
TYPE /AWS1/EMRMARKER
/AWS1/EMRMARKER
¶
The pagination token that indicates the next set of results to retrieve.
RETURNING¶
oo_output
TYPE REF TO /aws1/cl_emrlstbootstrapactout
/AWS1/CL_EMRLSTBOOTSTRAPACTOUT
¶
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_emr~listbootstrapactions(
iv_clusterid = |string|
iv_marker = |string|
).
This is an example of reading all possible response values
LOOP AT lo_result->get_bootstrapactions( ) into lo_row.
lv_string = lo_row_1->get_name( ).
lv_string = lo_row_1->get_scriptpath( ).
LOOP AT lo_row_1->get_args( ) into lo_row_2.
lv_string = lo_row_3->get_value( ).
ENDLOOP.
ENDLOOP.
lv_marker = lo_result->get_marker( ).