/AWS1/IF_AMP=>DESCRIBEQUERYLOGGINGCONF()¶
About DescribeQueryLoggingConfiguration¶
Retrieves the details of the query logging configuration for the specified workspace.
Method Signature¶
METHODS /AWS1/IF_AMP~DESCRIBEQUERYLOGGINGCONF
  IMPORTING
    !IV_WORKSPACEID TYPE /AWS1/AMPWORKSPACEID OPTIONAL
  RETURNING
    VALUE(OO_OUTPUT) TYPE REF TO /aws1/cl_ampdscquerylogconfrsp
  RAISING
    /AWS1/CX_AMPACCESSDENIEDEX
    /AWS1/CX_AMPINTERNALSERVEREX
    /AWS1/CX_AMPRESOURCENOTFOUNDEX
    /AWS1/CX_AMPVALIDATIONEX
    /AWS1/CX_AMPCLIENTEXC
    /AWS1/CX_AMPSERVEREXC
    /AWS1/CX_RT_TECHNICAL_GENERIC
    /AWS1/CX_RT_SERVICE_GENERIC.
IMPORTING¶
Required arguments:¶
iv_workspaceid TYPE /AWS1/AMPWORKSPACEID /AWS1/AMPWORKSPACEID¶
The ID of the workspace for which to retrieve the query logging configuration.
RETURNING¶
oo_output TYPE REF TO /aws1/cl_ampdscquerylogconfrsp /AWS1/CL_AMPDSCQUERYLOGCONFRSP¶
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->describequeryloggingconf( |string| ).
This is an example of reading all possible response values
lo_result = lo_result.
IF lo_result IS NOT INITIAL.
  lo_queryloggingconfigurati = lo_result->get_queryloggingconf( ).
  IF lo_queryloggingconfigurati IS NOT INITIAL.
    lo_queryloggingconfigurati_1 = lo_queryloggingconfigurati->get_status( ).
    IF lo_queryloggingconfigurati_1 IS NOT INITIAL.
      lv_queryloggingconfigurati_2 = lo_queryloggingconfigurati_1->get_statuscode( ).
      lv_string = lo_queryloggingconfigurati_1->get_statusreason( ).
    ENDIF.
    lv_workspaceid = lo_queryloggingconfigurati->get_workspace( ).
    LOOP AT lo_queryloggingconfigurati->get_destinations( ) into lo_row.
      lo_row_1 = lo_row.
      IF lo_row_1 IS NOT INITIAL.
        lo_cloudwatchlogdestinatio = lo_row_1->get_cloudwatchlogs( ).
        IF lo_cloudwatchlogdestinatio IS NOT INITIAL.
          lv_loggrouparn = lo_cloudwatchlogdestinatio->get_loggrouparn( ).
        ENDIF.
        lo_loggingfilter = lo_row_1->get_filters( ).
        IF lo_loggingfilter IS NOT INITIAL.
          lv_long = lo_loggingfilter->get_qspthreshold( ).
        ENDIF.
      ENDIF.
    ENDLOOP.
    lv_timestamp = lo_queryloggingconfigurati->get_createdat( ).
    lv_timestamp = lo_queryloggingconfigurati->get_modifiedat( ).
  ENDIF.
ENDIF.