/AWS1/CL_IN2=>CREATECODESECURITYSCANCONF()
¶
About CreateCodeSecurityScanConfiguration¶
Creates a scan configuration for code security scanning.
Method Signature¶
IMPORTING¶
Required arguments:¶
iv_name
TYPE /AWS1/IN2SCANCONFIGURATIONNAME
/AWS1/IN2SCANCONFIGURATIONNAME
¶
The name of the scan configuration.
iv_level
TYPE /AWS1/IN2CONFIGURATIONLEVEL
/AWS1/IN2CONFIGURATIONLEVEL
¶
The security level for the scan configuration.
io_configuration
TYPE REF TO /AWS1/CL_IN2CODESECSCANCONF
/AWS1/CL_IN2CODESECSCANCONF
¶
The configuration settings for the code security scan.
Optional arguments:¶
io_scopesettings
TYPE REF TO /AWS1/CL_IN2SCOPESETTINGS
/AWS1/CL_IN2SCOPESETTINGS
¶
The scope settings that define which repositories will be scanned. Include this parameter to create a default scan configuration. Otherwise Amazon Inspector creates a general scan configuration.
A default scan configuration automatically applies to all existing and future projects imported into Amazon Inspector. Use the
BatchAssociateCodeSecurityScanConfiguration
operation to associate a general scan configuration with projects.
it_tags
TYPE /AWS1/CL_IN2TAGMAP_W=>TT_TAGMAP
TT_TAGMAP
¶
The tags to apply to the scan configuration.
RETURNING¶
oo_output
TYPE REF TO /aws1/cl_in2crecodesecscanco01
/AWS1/CL_IN2CRECODESECSCANCO01
¶
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->/aws1/if_in2~createcodesecurityscanconf(
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| ) )
)
)
io_scopesettings = new /aws1/cl_in2scopesettings( |string| )
it_tags = VALUE /aws1/cl_in2tagmap_w=>tt_tagmap(
(
VALUE /aws1/cl_in2tagmap_w=>ts_tagmap_maprow(
value = new /aws1/cl_in2tagmap_w( |string| )
key = |string|
)
)
)
iv_level = |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_scanconfigurationarn = lo_result->get_scanconfigurationarn( ).
ENDIF.