/AWS1/IF_CFS=>DESCRIBEREMEDIATIONCONFS()¶
About DescribeRemediationConfigurations¶
Returns the details of one or more remediation configurations.
Method Signature¶
METHODS /AWS1/IF_CFS~DESCRIBEREMEDIATIONCONFS
  IMPORTING
    !IT_CONFIGRULENAMES TYPE /AWS1/CL_CFSCONFIGRULENAMES_W=>TT_CONFIGRULENAMES OPTIONAL
  RETURNING
    VALUE(OO_OUTPUT) TYPE REF TO /aws1/cl_cfsdscremediationco01
  RAISING
    /AWS1/CX_CFSCLIENTEXC
    /AWS1/CX_CFSSERVEREXC
    /AWS1/CX_RT_TECHNICAL_GENERIC
    /AWS1/CX_RT_SERVICE_GENERIC.
IMPORTING¶
Required arguments:¶
it_configrulenames TYPE /AWS1/CL_CFSCONFIGRULENAMES_W=>TT_CONFIGRULENAMES TT_CONFIGRULENAMES¶
A list of Config rule names of remediation configurations for which you want details.
RETURNING¶
oo_output TYPE REF TO /aws1/cl_cfsdscremediationco01 /AWS1/CL_CFSDSCREMEDIATIONCO01¶
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->describeremediationconfs(
  it_configrulenames = VALUE /aws1/cl_cfsconfigrulenames_w=>tt_configrulenames(
    ( new /aws1/cl_cfsconfigrulenames_w( |string| ) )
  )
).
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_remediationconfs( ) into lo_row.
    lo_row_1 = lo_row.
    IF lo_row_1 IS NOT INITIAL.
      lv_configrulename = lo_row_1->get_configrulename( ).
      lv_remediationtargettype = lo_row_1->get_targettype( ).
      lv_stringwithcharlimit256 = lo_row_1->get_targetid( ).
      lv_string = lo_row_1->get_targetversion( ).
      LOOP AT lo_row_1->get_parameters( ) into ls_row_2.
        lv_key = ls_row_2-key.
        lo_value = ls_row_2-value.
        IF lo_value IS NOT INITIAL.
          lo_resourcevalue = lo_value->get_resourcevalue( ).
          IF lo_resourcevalue IS NOT INITIAL.
            lv_resourcevaluetype = lo_resourcevalue->get_value( ).
          ENDIF.
          lo_staticvalue = lo_value->get_staticvalue( ).
          IF lo_staticvalue IS NOT INITIAL.
            LOOP AT lo_staticvalue->get_values( ) into lo_row_3.
              lo_row_4 = lo_row_3.
              IF lo_row_4 IS NOT INITIAL.
                lv_stringwithcharlimit256 = lo_row_4->get_value( ).
              ENDIF.
            ENDLOOP.
          ENDIF.
        ENDIF.
      ENDLOOP.
      lv_string = lo_row_1->get_resourcetype( ).
      lv_boolean = lo_row_1->get_automatic( ).
      lo_executioncontrols = lo_row_1->get_executioncontrols( ).
      IF lo_executioncontrols IS NOT INITIAL.
        lo_ssmcontrols = lo_executioncontrols->get_ssmcontrols( ).
        IF lo_ssmcontrols IS NOT INITIAL.
          lv_percentage = lo_ssmcontrols->get_concurrentexecrateperc00( ).
          lv_percentage = lo_ssmcontrols->get_errorpercentage( ).
        ENDIF.
      ENDIF.
      lv_autoremediationattempts = lo_row_1->get_maximumautomaticattempts( ).
      lv_autoremediationattempts_1 = lo_row_1->get_retryattemptseconds( ).
      lv_stringwithcharlimit1024 = lo_row_1->get_arn( ).
      lv_stringwithcharlimit1024 = lo_row_1->get_createdbyservice( ).
    ENDIF.
  ENDLOOP.
ENDIF.