onchange function of JavaScript calling in lambda function

0

Lambda function is using JavaScript We want a drop down button which list of requests When ever we select a request in from the drop down it should update in the query before running the query After finishing the query execution it should not reset the service name drop down

exports.handler = function myFunction(event,context) { var x = document.getElementById("mySelect").value; selectService=x }

        <tr>
            <td>Select Service</td><td><select id="mySelect"  name="selectService" onchange="myFunction()">
            <option selected="${selectService==="END"?"selected":""}" value="END">END</option>
             <option selected="${selectService==="START"?"selected":""}" value="START">START</option>
            </select></td>
        </tr>
asked 2 years ago262 views
1 Answer
0

The question is not clear. Can you share an architecture diagram of what exactly are you trying to do with the lambda function and also please provide some details around what is the issue you are facing with the lambda function?

profile pictureAWS
EXPERT
answered 2 years ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions