/AWS1/CL_EMR=>LISTSECURITYCONFIGURATIONS()
¶
About ListSecurityConfigurations¶
Lists all the security configurations visible to this account, providing their creation dates and times, and their names. This call returns a maximum of 50 clusters per call, but returns a marker to track the paging of the cluster list across multiple ListSecurityConfigurations calls.
Method Signature¶
IMPORTING¶
Optional arguments:¶
iv_marker
TYPE /AWS1/EMRMARKER
/AWS1/EMRMARKER
¶
The pagination token that indicates the set of results to retrieve.
RETURNING¶
oo_output
TYPE REF TO /aws1/cl_emrlistsecconfsoutput
/AWS1/CL_EMRLISTSECCONFSOUTPUT
¶
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~listsecurityconfigurations( |string| ).
This is an example of reading all possible response values
LOOP AT lo_result->get_securityconfigurations( ) into lo_row.
lv_xmlstring = lo_row_1->get_name( ).
lv_date = lo_row_1->get_creationdatetime( ).
ENDLOOP.
lv_marker = lo_result->get_marker( ).