タグ付けされた質問 「aws-lambda-edge」

1
サーバーレス:起動メソッドによる起動と削除が期待どおりに機能しない
私が持っているサーバレス ラムダ私は火(呼び出し)したい機能、方法をそしてそれを忘れ この方法でやっています // myFunction1 const params = { FunctionName: "myLambdaPath-myFunction2", InvocationType: "Event", Payload: JSON.stringify(body), }; console.log('invoking lambda function2'); // Able to log this line lambda.invoke(params, function(err, data) { if (err) { console.error(err, err.stack); } else { console.log(data); } }); // my function2 handler myFunction2 = (event) => { console.log('does …
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.