/AWS1/IF_SQT=>UPDATEAUTOMANAGEMENT()¶
About UpdateAutoManagement¶
Updates your Service Quotas Automatic Management configuration, including notification preferences and excluded quotas. Automatic Management monitors your Service Quotas utilization and notifies you before you run out of your allocated quotas.
Method Signature¶
METHODS /AWS1/IF_SQT~UPDATEAUTOMANAGEMENT
  IMPORTING
    !IV_OPTINTYPE TYPE /AWS1/SQTOPTINTYPE OPTIONAL
    !IV_NOTIFICATIONARN TYPE /AWS1/SQTAMAZONRESOURCENAME OPTIONAL
    !IT_EXCLUSIONLIST TYPE /AWS1/CL_SQTEXCLUDEDQUOTALST_W=>TT_EXCLUSIONLIST OPTIONAL
  RETURNING
    VALUE(OO_OUTPUT) TYPE REF TO /aws1/cl_sqtupdateautomngmtrsp
  RAISING
    /AWS1/CX_SQTACCESSDENIEDEX
    /AWS1/CX_SQTILLEGALARGUMENTEX
    /AWS1/CX_SQTNOSUCHRESOURCEEX
    /AWS1/CX_SQTSERVICEEXCEPTION
    /AWS1/CX_SQTTOOMANYREQUESTSEX
    /AWS1/CX_SQTCLIENTEXC
    /AWS1/CX_SQTSERVEREXC
    /AWS1/CX_RT_TECHNICAL_GENERIC
    /AWS1/CX_RT_SERVICE_GENERIC.
IMPORTING¶
Optional arguments:¶
iv_optintype TYPE /AWS1/SQTOPTINTYPE /AWS1/SQTOPTINTYPE¶
Information on the opt-in type for your Automatic Management configuration. There are two modes: Notify only and Notify and Auto-Adjust. Currently, only NotifyOnly is available.
iv_notificationarn TYPE /AWS1/SQTAMAZONRESOURCENAME /AWS1/SQTAMAZONRESOURCENAME¶
The User Notifications Amazon Resource Name (ARN) for Automatic Management notifications you want to update.
it_exclusionlist TYPE /AWS1/CL_SQTEXCLUDEDQUOTALST_W=>TT_EXCLUSIONLIST TT_EXCLUSIONLIST¶
List of Amazon Web Services services you want to exclude from Automatic Management. You won't be notified of Service Quotas utilization for Amazon Web Services services added to the Automatic Management exclusion list.
RETURNING¶
oo_output TYPE REF TO /aws1/cl_sqtupdateautomngmtrsp /AWS1/CL_SQTUPDATEAUTOMNGMTRSP¶
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->updateautomanagement(
  it_exclusionlist = VALUE /aws1/cl_sqtexcludedquotalst_w=>tt_exclusionlist(
    (
      VALUE /aws1/cl_sqtexcludedquotalst_w=>ts_exclusionlist_maprow(
        value = VALUE /aws1/cl_sqtexcludedquotalst_w=>tt_excludedquotalist(
          ( new /aws1/cl_sqtexcludedquotalst_w( |string| ) )
        )
        key = |string|
      )
    )
  )
  iv_notificationarn = |string|
  iv_optintype = |string|
).
This is an example of reading all possible response values
lo_result = lo_result.
IF lo_result IS NOT INITIAL.
ENDIF.