jQueryをモチいて、API Gatewayをす。
下記カキのサンプルソースでは、textboxの入力ニュウリョクアタイをAPI Gatewayにワタし、LambdaでCOBOLがウゴいて、
COBOLからモドされたアタイり、表示ヒョウジする仕様シヨウとなっている。
参考サンコウ
https://www.tantan-biyori.info/blog/2019/01/amazon-api-gatewayapi.html
<html lang="ja">                                                          
<head>  
<meta charset="UTF-8">  
<title>API Gateway TestPage</title>  
</head>  
<body>  
    <h3>WEB⇔COBOL連携</h3>  
    <input id="in1" type="text"></input><br>  
    <input id="in2" type="text"></input><br>  
    <button id="exec">実行</button><br><br>  
    <div id="res"></div>  
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>  
<script>  
$(function() {  
    $('#exec').on('click'function() {  
        $.ajax({   ajax通信ツウシンでAPI Gatewayへアクセスし、アタイワタす。
            type:'POST',  
            url:'https://xxxxxxx.execute-api.ap-northeast-1.amazonaws.com/cobo/cobol2020',   API GatewayのURL+メソッドメイ ※
            data:JSON.stringify({  
                "text1" : document.getElementById("in1").value,   COBOLへのINPUT(TextBoxのアタイワタす)
                "text2" : document.getElementById("in2").value   COBOLへのINPUT(TextBoxのアタイワタす)
                })  
        }).done(json => {  
            $('#res').html("StatusCode" + json['statusCode'] + "<br>" +    COBOLソースナイでの固定値コテイチ
            "Message:" + json['body'] + "<br>" +    COBOLソースナイでの固定値コテイチ
            "入力値1:" + json['input']["text1"] + "<br>"   COBOLへのINPUT(可変カヘンアタイ)を
            "入力値2:" + json['input']["text2"]);   COBOLへのINPUT(可変カヘンアタイ)を
        });  
    });  
})   ※API Gatewayでデプロイされたアト表示ヒョウジされるURL+メソッドメイ
</script>  
</body>  
</html>                                                                  
動作ドウサ確認カクニン