/AWS1/IF_LM2=>UPDATEBOTLOCALE()¶
About UpdateBotLocale¶
Updates the settings that a bot has for a specific locale.
Method Signature¶
METHODS /AWS1/IF_LM2~UPDATEBOTLOCALE
IMPORTING
!IV_BOTID TYPE /AWS1/LM2ID OPTIONAL
!IV_BOTVERSION TYPE /AWS1/LM2DRAFTBOTVERSION OPTIONAL
!IV_LOCALEID TYPE /AWS1/LM2LOCALEID OPTIONAL
!IV_DESCRIPTION TYPE /AWS1/LM2DESCRIPTION OPTIONAL
!IV_NLUINTENTCONFIDENCETHRESH TYPE /AWS1/RT_DOUBLE_AS_STRING OPTIONAL
!IO_VOICESETTINGS TYPE REF TO /AWS1/CL_LM2VOICESETTINGS OPTIONAL
!IO_GENERATIVEAISETTINGS TYPE REF TO /AWS1/CL_LM2GENERATIVEAISTGS OPTIONAL
RETURNING
VALUE(OO_OUTPUT) TYPE REF TO /aws1/cl_lm2updatebotlocalersp
RAISING
/AWS1/CX_LM2CONFLICTEXCEPTION
/AWS1/CX_LM2INTERNALSERVEREX
/AWS1/CX_LM2PRECONDFAILEDEX
/AWS1/CX_LM2SERVICEQUOTAEXCDEX
/AWS1/CX_LM2THROTTLINGEX
/AWS1/CX_LM2VALIDATIONEX
/AWS1/CX_LM2CLIENTEXC
/AWS1/CX_LM2SERVEREXC
/AWS1/CX_RT_TECHNICAL_GENERIC
/AWS1/CX_RT_SERVICE_GENERIC.
IMPORTING¶
Required arguments:¶
iv_botid TYPE /AWS1/LM2ID /AWS1/LM2ID¶
The unique identifier of the bot that contains the locale.
iv_botversion TYPE /AWS1/LM2DRAFTBOTVERSION /AWS1/LM2DRAFTBOTVERSION¶
The version of the bot that contains the locale to be updated. The version can only be the
DRAFTversion.
iv_localeid TYPE /AWS1/LM2LOCALEID /AWS1/LM2LOCALEID¶
The identifier of the language and locale to update. The string must match one of the supported locales. For more information, see Supported languages.
iv_nluintentconfidencethresh TYPE /AWS1/RT_DOUBLE_AS_STRING /AWS1/RT_DOUBLE_AS_STRING¶
The new confidence threshold where Amazon Lex inserts the
AMAZON.FallbackIntentandAMAZON.KendraSearchIntentintents in the list of possible intents for an utterance.
Optional arguments:¶
iv_description TYPE /AWS1/LM2DESCRIPTION /AWS1/LM2DESCRIPTION¶
The new description of the locale.
io_voicesettings TYPE REF TO /AWS1/CL_LM2VOICESETTINGS /AWS1/CL_LM2VOICESETTINGS¶
The new Amazon Polly voice Amazon Lex should use for voice interaction with the user.
io_generativeaisettings TYPE REF TO /AWS1/CL_LM2GENERATIVEAISTGS /AWS1/CL_LM2GENERATIVEAISTGS¶
Contains settings for generative AI features powered by Amazon Bedrock for your bot locale. Use this object to turn generative AI features on and off. Pricing may differ if you turn a feature on. For more information, see LINK.
RETURNING¶
oo_output TYPE REF TO /aws1/cl_lm2updatebotlocalersp /AWS1/CL_LM2UPDATEBOTLOCALERSP¶
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->updatebotlocale(
io_generativeaisettings = new /aws1/cl_lm2generativeaistgs(
io_buildtimesettings = new /aws1/cl_lm2buildtimesettings(
io_descriptivebotbuilder = new /aws1/cl_lm2descriptivebotbu00(
io_bedrockmodelspecification = new /aws1/cl_lm2bedrockmodelspec(
io_guardrail = new /aws1/cl_lm2bedrockguardrail00(
iv_identifier = |string|
iv_version = |string|
)
iv_customprompt = |string|
iv_modelarn = |string|
iv_tracestatus = |string|
)
iv_enabled = ABAP_TRUE
)
io_sampleutterancegeneration = new /aws1/cl_lm2sampleutteranceg00(
io_bedrockmodelspecification = new /aws1/cl_lm2bedrockmodelspec(
io_guardrail = new /aws1/cl_lm2bedrockguardrail00(
iv_identifier = |string|
iv_version = |string|
)
iv_customprompt = |string|
iv_modelarn = |string|
iv_tracestatus = |string|
)
iv_enabled = ABAP_TRUE
)
)
io_runtimesettings = new /aws1/cl_lm2runtimesettings(
io_nluimprovement = new /aws1/cl_lm2nluimprovementspec( ABAP_TRUE )
io_slotresolutionimprovement = new /aws1/cl_lm2slotresolutionim00(
io_bedrockmodelspecification = new /aws1/cl_lm2bedrockmodelspec(
io_guardrail = new /aws1/cl_lm2bedrockguardrail00(
iv_identifier = |string|
iv_version = |string|
)
iv_customprompt = |string|
iv_modelarn = |string|
iv_tracestatus = |string|
)
iv_enabled = ABAP_TRUE
)
)
)
io_voicesettings = new /aws1/cl_lm2voicesettings(
iv_engine = |string|
iv_voiceid = |string|
)
iv_botid = |string|
iv_botversion = |string|
iv_description = |string|
iv_localeid = |string|
iv_nluintentconfidencethresh = |0.1|
).
This is an example of reading all possible response values
lo_result = lo_result.
IF lo_result IS NOT INITIAL.
lv_id = lo_result->get_botid( ).
lv_draftbotversion = lo_result->get_botversion( ).
lv_localeid = lo_result->get_localeid( ).
lv_localename = lo_result->get_localename( ).
lv_description = lo_result->get_description( ).
lv_confidencethreshold = lo_result->get_nluintentconfidencethrsh( ).
lo_voicesettings = lo_result->get_voicesettings( ).
IF lo_voicesettings IS NOT INITIAL.
lv_voiceid = lo_voicesettings->get_voiceid( ).
lv_voiceengine = lo_voicesettings->get_engine( ).
ENDIF.
lv_botlocalestatus = lo_result->get_botlocalestatus( ).
LOOP AT lo_result->get_failurereasons( ) into lo_row.
lo_row_1 = lo_row.
IF lo_row_1 IS NOT INITIAL.
lv_failurereason = lo_row_1->get_value( ).
ENDIF.
ENDLOOP.
lv_timestamp = lo_result->get_creationdatetime( ).
lv_timestamp = lo_result->get_lastupdateddatetime( ).
LOOP AT lo_result->get_recommendedactions( ) into lo_row_2.
lo_row_3 = lo_row_2.
IF lo_row_3 IS NOT INITIAL.
lv_recommendedaction = lo_row_3->get_value( ).
ENDIF.
ENDLOOP.
lo_generativeaisettings = lo_result->get_generativeaisettings( ).
IF lo_generativeaisettings IS NOT INITIAL.
lo_runtimesettings = lo_generativeaisettings->get_runtimesettings( ).
IF lo_runtimesettings IS NOT INITIAL.
lo_slotresolutionimproveme = lo_runtimesettings->get_slotresolutionimprovem00( ).
IF lo_slotresolutionimproveme IS NOT INITIAL.
lv_enabled = lo_slotresolutionimproveme->get_enabled( ).
lo_bedrockmodelspecificati = lo_slotresolutionimproveme->get_bedrockmodelspec( ).
IF lo_bedrockmodelspecificati IS NOT INITIAL.
lv_bedrockmodelarn = lo_bedrockmodelspecificati->get_modelarn( ).
lo_bedrockguardrailconfigu = lo_bedrockmodelspecificati->get_guardrail( ).
IF lo_bedrockguardrailconfigu IS NOT INITIAL.
lv_bedrockguardrailidentif = lo_bedrockguardrailconfigu->get_identifier( ).
lv_bedrockguardrailversion = lo_bedrockguardrailconfigu->get_version( ).
ENDIF.
lv_bedrocktracestatus = lo_bedrockmodelspecificati->get_tracestatus( ).
lv_bedrockmodelcustompromp = lo_bedrockmodelspecificati->get_customprompt( ).
ENDIF.
ENDIF.
lo_nluimprovementspecifica = lo_runtimesettings->get_nluimprovement( ).
IF lo_nluimprovementspecifica IS NOT INITIAL.
lv_enabled = lo_nluimprovementspecifica->get_enabled( ).
ENDIF.
ENDIF.
lo_buildtimesettings = lo_generativeaisettings->get_buildtimesettings( ).
IF lo_buildtimesettings IS NOT INITIAL.
lo_descriptivebotbuildersp = lo_buildtimesettings->get_descriptivebotbuilder( ).
IF lo_descriptivebotbuildersp IS NOT INITIAL.
lv_boolean = lo_descriptivebotbuildersp->get_enabled( ).
lo_bedrockmodelspecificati = lo_descriptivebotbuildersp->get_bedrockmodelspec( ).
IF lo_bedrockmodelspecificati IS NOT INITIAL.
lv_bedrockmodelarn = lo_bedrockmodelspecificati->get_modelarn( ).
lo_bedrockguardrailconfigu = lo_bedrockmodelspecificati->get_guardrail( ).
IF lo_bedrockguardrailconfigu IS NOT INITIAL.
lv_bedrockguardrailidentif = lo_bedrockguardrailconfigu->get_identifier( ).
lv_bedrockguardrailversion = lo_bedrockguardrailconfigu->get_version( ).
ENDIF.
lv_bedrocktracestatus = lo_bedrockmodelspecificati->get_tracestatus( ).
lv_bedrockmodelcustompromp = lo_bedrockmodelspecificati->get_customprompt( ).
ENDIF.
ENDIF.
lo_sampleutterancegenerati = lo_buildtimesettings->get_sampleutterancegenerat00( ).
IF lo_sampleutterancegenerati IS NOT INITIAL.
lv_boolean = lo_sampleutterancegenerati->get_enabled( ).
lo_bedrockmodelspecificati = lo_sampleutterancegenerati->get_bedrockmodelspec( ).
IF lo_bedrockmodelspecificati IS NOT INITIAL.
lv_bedrockmodelarn = lo_bedrockmodelspecificati->get_modelarn( ).
lo_bedrockguardrailconfigu = lo_bedrockmodelspecificati->get_guardrail( ).
IF lo_bedrockguardrailconfigu IS NOT INITIAL.
lv_bedrockguardrailidentif = lo_bedrockguardrailconfigu->get_identifier( ).
lv_bedrockguardrailversion = lo_bedrockguardrailconfigu->get_version( ).
ENDIF.
lv_bedrocktracestatus = lo_bedrockmodelspecificati->get_tracestatus( ).
lv_bedrockmodelcustompromp = lo_bedrockmodelspecificati->get_customprompt( ).
ENDIF.
ENDIF.
ENDIF.
ENDIF.
ENDIF.