/AWS1/IF_LMD=>GETFUNCTIONSCALINGCONFIG()¶
About GetFunctionScalingConfig¶
Retrieves the scaling configuration for a Lambda Managed Instances function.
Method Signature¶
METHODS /AWS1/IF_LMD~GETFUNCTIONSCALINGCONFIG
IMPORTING
!IV_FUNCTIONNAME TYPE /AWS1/LMDUNQUALIFIEDFUNCNAME OPTIONAL
!IV_QUALIFIER TYPE /AWS1/LMDPUBEDFUNCQUALIFIER OPTIONAL
RETURNING
VALUE(OO_OUTPUT) TYPE REF TO /aws1/cl_lmdgetfuncscacfgrsp
RAISING
/AWS1/CX_LMDINVPARAMVALUEEX
/AWS1/CX_LMDRESOURCENOTFOUNDEX
/AWS1/CX_LMDSERVICEEXCEPTION
/AWS1/CX_LMDTOOMANYREQUESTSEX
/AWS1/CX_LMDCLIENTEXC
/AWS1/CX_LMDSERVEREXC
/AWS1/CX_RT_TECHNICAL_GENERIC
/AWS1/CX_RT_SERVICE_GENERIC.
IMPORTING¶
Required arguments:¶
iv_functionname TYPE /AWS1/LMDUNQUALIFIEDFUNCNAME /AWS1/LMDUNQUALIFIEDFUNCNAME¶
The name or ARN of the Lambda function.
iv_qualifier TYPE /AWS1/LMDPUBEDFUNCQUALIFIER /AWS1/LMDPUBEDFUNCQUALIFIER¶
Specify a version or alias to get the scaling configuration for a published version of the function.
RETURNING¶
oo_output TYPE REF TO /aws1/cl_lmdgetfuncscacfgrsp /AWS1/CL_LMDGETFUNCSCACFGRSP¶
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->getfunctionscalingconfig(
iv_functionname = |string|
iv_qualifier = |string|
).
This is an example of reading all possible response values
lo_result = lo_result.
IF lo_result IS NOT INITIAL.
lv_functionarn = lo_result->get_functionarn( ).
lo_functionscalingconfig = lo_result->get_appliedfuncscalingconfig( ).
IF lo_functionscalingconfig IS NOT INITIAL.
lv_functionscalingconfigex = lo_functionscalingconfig->get_minexecutionenvironments( ).
lv_functionscalingconfigex = lo_functionscalingconfig->get_maxexecutionenvironments( ).
ENDIF.
lo_functionscalingconfig = lo_result->get_requestedfuncscaconfig( ).
IF lo_functionscalingconfig IS NOT INITIAL.
lv_functionscalingconfigex = lo_functionscalingconfig->get_minexecutionenvironments( ).
lv_functionscalingconfigex = lo_functionscalingconfig->get_maxexecutionenvironments( ).
ENDIF.
ENDIF.