/AWS1/IF_RUM=>DELETERUMMETRICSDESTINATION()¶
About DeleteRumMetricsDestination¶
Deletes a destination for CloudWatch RUM extended metrics, so that the specified app monitor stops sending extended metrics to that destination.
Method Signature¶
METHODS /AWS1/IF_RUM~DELETERUMMETRICSDESTINATION
IMPORTING
!IV_APPMONITORNAME TYPE /AWS1/RUMAPPMONITORNAME OPTIONAL
!IV_DESTINATION TYPE /AWS1/RUMMETRICDESTINATION OPTIONAL
!IV_DESTINATIONARN TYPE /AWS1/RUMDESTINATIONARN OPTIONAL
RETURNING
VALUE(OO_OUTPUT) TYPE REF TO /aws1/cl_rumdeleterummetdstrsp
RAISING
/AWS1/CX_RUMACCESSDENIEDEX
/AWS1/CX_RUMCONFLICTEXCEPTION
/AWS1/CX_RUMINTERNALSERVEREX
/AWS1/CX_RUMRESOURCENOTFOUNDEX
/AWS1/CX_RUMTHROTTLINGEX
/AWS1/CX_RUMVALIDATIONEX
/AWS1/CX_RUMCLIENTEXC
/AWS1/CX_RUMSERVEREXC
/AWS1/CX_RT_TECHNICAL_GENERIC
/AWS1/CX_RT_SERVICE_GENERIC.
IMPORTING¶
Required arguments:¶
iv_appmonitorname TYPE /AWS1/RUMAPPMONITORNAME /AWS1/RUMAPPMONITORNAME¶
The name of the app monitor that is sending metrics to the destination that you want to delete.
iv_destination TYPE /AWS1/RUMMETRICDESTINATION /AWS1/RUMMETRICDESTINATION¶
The type of destination to delete. Valid values are
CloudWatchandEvidently.
Optional arguments:¶
iv_destinationarn TYPE /AWS1/RUMDESTINATIONARN /AWS1/RUMDESTINATIONARN¶
This parameter is required if
DestinationisEvidently. IfDestinationisCloudWatch, do not use this parameter. This parameter specifies the ARN of the Evidently experiment that corresponds to the destination to delete.
RETURNING¶
oo_output TYPE REF TO /aws1/cl_rumdeleterummetdstrsp /AWS1/CL_RUMDELETERUMMETDSTRSP¶
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->deleterummetricsdestination(
iv_appmonitorname = |string|
iv_destination = |string|
iv_destinationarn = |string|
).
This is an example of reading all possible response values
lo_result = lo_result.
IF lo_result IS NOT INITIAL.
ENDIF.