/AWS1/CL_IN2=>UPDATECONFIGURATION()
¶
About UpdateConfiguration¶
Updates setting configurations for your Amazon Inspector account. When you use this API as an Amazon Inspector delegated administrator this updates the setting for all accounts you manage. Member accounts in an organization cannot update this setting.
Method Signature¶
IMPORTING¶
Optional arguments:¶
io_ecrconfiguration
TYPE REF TO /AWS1/CL_IN2ECRCONFIGURATION
/AWS1/CL_IN2ECRCONFIGURATION
¶
Specifies how the ECR automated re-scan will be updated for your environment.
io_ec2configuration
TYPE REF TO /AWS1/CL_IN2EC2CONFIGURATION
/AWS1/CL_IN2EC2CONFIGURATION
¶
Specifies how the Amazon EC2 automated scan will be updated for your environment.
RETURNING¶
oo_output
TYPE REF TO /aws1/cl_in2updateconfresponse
/AWS1/CL_IN2UPDATECONFRESPONSE
¶
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~updateconfiguration(
io_ec2configuration = new /aws1/cl_in2ec2configuration( |string| )
io_ecrconfiguration = new /aws1/cl_in2ecrconfiguration(
iv_pulldaterescanduration = |string|
iv_pulldaterescanmode = |string|
iv_rescanduration = |string|
)
).
This is an example of reading all possible response values
lo_result = lo_result.
IF lo_result IS NOT INITIAL.
ENDIF.