/AWS1/IF_CHS=>UPDATECHANNELFLOW()¶
About UpdateChannelFlow¶
Updates channel flow attributes. This is a developer API.
Method Signature¶
METHODS /AWS1/IF_CHS~UPDATECHANNELFLOW
IMPORTING
!IV_CHANNELFLOWARN TYPE /AWS1/CHSCHIMEARN OPTIONAL
!IT_PROCESSORS TYPE /AWS1/CL_CHSPROCESSOR=>TT_PROCESSORLIST OPTIONAL
!IV_NAME TYPE /AWS1/CHSNONEMPTYRESOURCENAME OPTIONAL
RETURNING
VALUE(OO_OUTPUT) TYPE REF TO /aws1/cl_chsupdchannelflowrsp
RAISING
/AWS1/CX_CHSBADREQUESTEX
/AWS1/CX_CHSCONFLICTEXCEPTION
/AWS1/CX_CHSFORBIDDENEXCEPTION
/AWS1/CX_CHSSERVICEFAILUREEX
/AWS1/CX_CHSSERVICEUNAVAILEX
/AWS1/CX_CHSTHROTTLEDCLIENTEX
/AWS1/CX_CHSUNAUTHDCLIENTEX
/AWS1/CX_CHSCLIENTEXC
/AWS1/CX_CHSSERVEREXC
/AWS1/CX_RT_TECHNICAL_GENERIC
/AWS1/CX_RT_SERVICE_GENERIC.
IMPORTING¶
Required arguments:¶
iv_channelflowarn TYPE /AWS1/CHSCHIMEARN /AWS1/CHSCHIMEARN¶
The ARN of the channel flow.
it_processors TYPE /AWS1/CL_CHSPROCESSOR=>TT_PROCESSORLIST TT_PROCESSORLIST¶
Information about the processor Lambda functions
iv_name TYPE /AWS1/CHSNONEMPTYRESOURCENAME /AWS1/CHSNONEMPTYRESOURCENAME¶
The name of the channel flow.
RETURNING¶
oo_output TYPE REF TO /aws1/cl_chsupdchannelflowrsp /AWS1/CL_CHSUPDCHANNELFLOWRSP¶
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->updatechannelflow(
it_processors = VALUE /aws1/cl_chsprocessor=>tt_processorlist(
(
new /aws1/cl_chsprocessor(
io_configuration = new /aws1/cl_chsprocessorconf(
io_lambda = new /aws1/cl_chslambdaconf(
iv_invocationtype = |string|
iv_resourcearn = |string|
)
)
iv_executionorder = 123
iv_fallbackaction = |string|
iv_name = |string|
)
)
)
iv_channelflowarn = |string|
iv_name = |string|
).
This is an example of reading all possible response values
lo_result = lo_result.
IF lo_result IS NOT INITIAL.
lv_chimearn = lo_result->get_channelflowarn( ).
ENDIF.