/AWS1/IF_R53=>LISTREUSABLEDELEGATIONSETS()¶
About ListReusableDelegationSets¶
Retrieves a list of the reusable delegation sets that are associated with the current Amazon Web Services account.
Method Signature¶
METHODS /AWS1/IF_R53~LISTREUSABLEDELEGATIONSETS
IMPORTING
!IV_MARKER TYPE /AWS1/R53PAGEMARKER OPTIONAL
!IV_MAXITEMS TYPE /AWS1/R53INTEGER OPTIONAL
RETURNING
VALUE(OO_OUTPUT) TYPE REF TO /aws1/cl_r53lstreusabledeleg01
RAISING
/AWS1/CX_R53INVALIDINPUT
/AWS1/CX_R53CLIENTEXC
/AWS1/CX_R53SERVEREXC
/AWS1/CX_RT_TECHNICAL_GENERIC
/AWS1/CX_RT_SERVICE_GENERIC.
IMPORTING¶
Optional arguments:¶
iv_marker TYPE /AWS1/R53PAGEMARKER /AWS1/R53PAGEMARKER¶
If the value of
IsTruncatedin the previous response wastrue, you have more reusable delegation sets. To get another group, submit anotherListReusableDelegationSetsrequest.For the value of
marker, specify the value ofNextMarkerfrom the previous response, which is the ID of the first reusable delegation set that Amazon Route 53 will return if you submit another request.If the value of
IsTruncatedin the previous response wasfalse, there are no more reusable delegation sets to get.
iv_maxitems TYPE /AWS1/R53INTEGER /AWS1/R53INTEGER¶
The number of reusable delegation sets that you want Amazon Route 53 to return in the response to this request. If you specify a value greater than 100, Route 53 returns only the first 100 reusable delegation sets.
RETURNING¶
oo_output TYPE REF TO /aws1/cl_r53lstreusabledeleg01 /AWS1/CL_R53LSTREUSABLEDELEG01¶
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->listreusabledelegationsets(
iv_marker = |string|
iv_maxitems = 123
).
This is an example of reading all possible response values
lo_result = lo_result.
IF lo_result IS NOT INITIAL.
LOOP AT lo_result->get_delegationsets( ) into lo_row.
lo_row_1 = lo_row.
IF lo_row_1 IS NOT INITIAL.
lv_resourceid = lo_row_1->get_id( ).
lv_nonce = lo_row_1->get_callerreference( ).
LOOP AT lo_row_1->get_nameservers( ) into lo_row_2.
lo_row_3 = lo_row_2.
IF lo_row_3 IS NOT INITIAL.
lv_dnsname = lo_row_3->get_value( ).
ENDIF.
ENDLOOP.
ENDIF.
ENDLOOP.
lv_pagemarker = lo_result->get_marker( ).
lv_pagetruncated = lo_result->get_istruncated( ).
lv_pagemarker = lo_result->get_nextmarker( ).
lv_integer = lo_result->get_maxitems( ).
ENDIF.