/AWS1/IF_AAN=>GETFINDINGRECOMMENDATION()¶
About GetFindingRecommendation¶
Retrieves information about a finding recommendation for the specified analyzer.
Method Signature¶
METHODS /AWS1/IF_AAN~GETFINDINGRECOMMENDATION
IMPORTING
!IV_ANALYZERARN TYPE /AWS1/AANANALYZERARN OPTIONAL
!IV_ID TYPE /AWS1/AANSTRING OPTIONAL
!IV_MAXRESULTS TYPE /AWS1/AANINTEGER OPTIONAL
!IV_NEXTTOKEN TYPE /AWS1/AANTOKEN OPTIONAL
RETURNING
VALUE(OO_OUTPUT) TYPE REF TO /aws1/cl_aangetfndrecommenda01
RAISING
/AWS1/CX_AANACCESSDENIEDEX
/AWS1/CX_AANINTERNALSERVEREX
/AWS1/CX_AANRESOURCENOTFOUNDEX
/AWS1/CX_AANTHROTTLINGEX
/AWS1/CX_AANVALIDATIONEX
/AWS1/CX_AANCLIENTEXC
/AWS1/CX_AANSERVEREXC
/AWS1/CX_RT_TECHNICAL_GENERIC
/AWS1/CX_RT_SERVICE_GENERIC.
IMPORTING¶
Required arguments:¶
iv_analyzerarn TYPE /AWS1/AANANALYZERARN /AWS1/AANANALYZERARN¶
The ARN of the analyzer used to generate the finding recommendation.
iv_id TYPE /AWS1/AANSTRING /AWS1/AANSTRING¶
The unique ID for the finding recommendation.
Optional arguments:¶
iv_maxresults TYPE /AWS1/AANINTEGER /AWS1/AANINTEGER¶
The maximum number of results to return in the response.
iv_nexttoken TYPE /AWS1/AANTOKEN /AWS1/AANTOKEN¶
A token used for pagination of results returned.
RETURNING¶
oo_output TYPE REF TO /aws1/cl_aangetfndrecommenda01 /AWS1/CL_AANGETFNDRECOMMENDA01¶
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->getfindingrecommendation(
iv_analyzerarn = |string|
iv_id = |string|
iv_maxresults = 123
iv_nexttoken = |string|
).
This is an example of reading all possible response values
lo_result = lo_result.
IF lo_result IS NOT INITIAL.
lv_timestamp = lo_result->get_startedat( ).
lv_timestamp = lo_result->get_completedat( ).
lv_token = lo_result->get_nexttoken( ).
lo_recommendationerror = lo_result->get_error( ).
IF lo_recommendationerror IS NOT INITIAL.
lv_string = lo_recommendationerror->get_code( ).
lv_string = lo_recommendationerror->get_message( ).
ENDIF.
lv_resourcearn = lo_result->get_resourcearn( ).
LOOP AT lo_result->get_recommendedsteps( ) into lo_row.
lo_row_1 = lo_row.
IF lo_row_1 IS NOT INITIAL.
lo_unusedpermissionsrecomm = lo_row_1->get_unusedpermsrecommended00( ).
IF lo_unusedpermissionsrecomm IS NOT INITIAL.
lv_timestamp = lo_unusedpermissionsrecomm->get_policyupdatedat( ).
lv_recommendedremediationa = lo_unusedpermissionsrecomm->get_recommendedaction( ).
lv_string = lo_unusedpermissionsrecomm->get_recommendedpolicy( ).
lv_string = lo_unusedpermissionsrecomm->get_existingpolicyid( ).
ENDIF.
ENDIF.
ENDLOOP.
lv_recommendationtype = lo_result->get_recommendationtype( ).
lv_status = lo_result->get_status( ).
ENDIF.
Successfully fetched finding recommendation¶
Successfully fetched finding recommendation
DATA(lo_result) = lo_client->getfindingrecommendation(
iv_analyzerarn = |arn:aws:access-analyzer:us-east-1:111122223333:analyzer/a|
iv_id = |finding-id|
iv_maxresults = 3
iv_nexttoken = |token|
).
In progress finding recommendation¶
In progress finding recommendation
DATA(lo_result) = lo_client->getfindingrecommendation(
iv_analyzerarn = |arn:aws:access-analyzer:us-east-1:111122223333:analyzer/a|
iv_id = |finding-id|
iv_maxresults = 3
).
Failed finding recommendation¶
Failed finding recommendation
DATA(lo_result) = lo_client->getfindingrecommendation(
iv_analyzerarn = |arn:aws:access-analyzer:us-east-1:111122223333:analyzer/a|
iv_id = |finding-id|
iv_maxresults = 3
).
Failed field validation for id value¶
Failed field validation for id value
DATA(lo_result) = lo_client->getfindingrecommendation(
iv_analyzerarn = |arn:aws:access-analyzer:us-east-1:111122223333:analyzer/a|
iv_id = |!|
).