/AWS1/IF_WSP=>DELETECONNECTCLIENTADDIN()¶
About DeleteConnectClientAddIn¶
Deletes a client-add-in for Amazon Connect that is configured within a directory.
Method Signature¶
METHODS /AWS1/IF_WSP~DELETECONNECTCLIENTADDIN
IMPORTING
!IV_ADDINID TYPE /AWS1/WSPAMAZONUUID OPTIONAL
!IV_RESOURCEID TYPE /AWS1/WSPDIRECTORYID OPTIONAL
RETURNING
VALUE(OO_OUTPUT) TYPE REF TO /aws1/cl_wspdelcnctcliaddinrs
RAISING
/AWS1/CX_WSPACCESSDENIEDEX
/AWS1/CX_WSPINVPARAMVALUESEX
/AWS1/CX_WSPRESOURCENOTFOUNDEX
/AWS1/CX_WSPCLIENTEXC
/AWS1/CX_WSPSERVEREXC
/AWS1/CX_RT_TECHNICAL_GENERIC
/AWS1/CX_RT_SERVICE_GENERIC.
IMPORTING¶
Required arguments:¶
iv_addinid TYPE /AWS1/WSPAMAZONUUID /AWS1/WSPAMAZONUUID¶
The identifier of the client add-in to delete.
iv_resourceid TYPE /AWS1/WSPDIRECTORYID /AWS1/WSPDIRECTORYID¶
The directory identifier for which the client add-in is configured.
RETURNING¶
oo_output TYPE REF TO /aws1/cl_wspdelcnctcliaddinrs /AWS1/CL_WSPDELCNCTCLIADDINRS¶
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->deleteconnectclientaddin(
iv_addinid = |string|
iv_resourceid = |string|
).
This is an example of reading all possible response values
lo_result = lo_result.
IF lo_result IS NOT INITIAL.
ENDIF.