/AWS1/IF_IN2=>UPDATECODESECURITYSCANCONF()¶
About UpdateCodeSecurityScanConfiguration¶
Updates an existing code security scan configuration.
Method Signature¶
METHODS /AWS1/IF_IN2~UPDATECODESECURITYSCANCONF
IMPORTING
!IV_SCANCONFIGURATIONARN TYPE /AWS1/IN2SCANCONFIGURATIONARN OPTIONAL
!IO_CONFIGURATION TYPE REF TO /AWS1/CL_IN2CODESECSCANCONF OPTIONAL
RETURNING
VALUE(OO_OUTPUT) TYPE REF TO /aws1/cl_in2upcodesecscancon01
RAISING
/AWS1/CX_IN2ACCESSDENIEDEX
/AWS1/CX_IN2CONFLICTEXCEPTION
/AWS1/CX_IN2INTERNALSERVEREX
/AWS1/CX_IN2RESOURCENOTFOUNDEX
/AWS1/CX_IN2THROTTLINGEX
/AWS1/CX_IN2VALIDATIONEX
/AWS1/CX_IN2CLIENTEXC
/AWS1/CX_IN2SERVEREXC
/AWS1/CX_RT_TECHNICAL_GENERIC
/AWS1/CX_RT_SERVICE_GENERIC.
IMPORTING¶
Required arguments:¶
iv_scanconfigurationarn TYPE /AWS1/IN2SCANCONFIGURATIONARN /AWS1/IN2SCANCONFIGURATIONARN¶
The Amazon Resource Name (ARN) of the scan configuration to update.
io_configuration TYPE REF TO /AWS1/CL_IN2CODESECSCANCONF /AWS1/CL_IN2CODESECSCANCONF¶
The updated configuration settings for the code security scan.
RETURNING¶
oo_output TYPE REF TO /aws1/cl_in2upcodesecscancon01 /AWS1/CL_IN2UPCODESECSCANCON01¶
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->updatecodesecurityscanconf(
io_configuration = new /aws1/cl_in2codesecscanconf(
io_contintegrationscanconf = new /aws1/cl_in2contintegrations00(
it_supportedevents = VALUE /aws1/cl_in2contintegrations01=>tt_contintegrationscansupped00(
( new /aws1/cl_in2contintegrations01( |string| ) )
)
)
io_periodicscanconfiguration = new /aws1/cl_in2periodicscanconf(
iv_frequency = |string|
iv_frequencyexpression = |string|
)
it_rulesetcategories = VALUE /aws1/cl_in2rulesetcats_w=>tt_rulesetcategories(
( new /aws1/cl_in2rulesetcats_w( |string| ) )
)
)
iv_scanconfigurationarn = |string|
).
This is an example of reading all possible response values
lo_result = lo_result.
IF lo_result IS NOT INITIAL.
lv_scanconfigurationarn = lo_result->get_scanconfigurationarn( ).
ENDIF.