Lambda

AWS

Lambda function using a Docker image

Docker on WindowsDocker DesktopRancher DesktopWSLBase Image for AWS LambdaDockerfileLambda Function Codeimport sys, boto...
AWS

Boto3 Layer for Python Lambda functions

Create the layer in Lambda Lambdaレイヤーの作成CloudShellで実行しました。$ mkdir python$ pip install boto3 -t python/...Successfully in...
AWS

AWS SAM installation

前提条件本記事ではデプロイ用のS3バケット、Lambda関数用のIAMロールは作成済とします。インストール初期化sam initsamconfig.tomlversion = 0.1stack_name = "stack_name"s3_b...
JavaScript

JavaScript Array Processing (JavaScript配列処理)

要素数lengthconst array = ;console.log(array.length); // Expected output: 3存在判定includes()const integers = ;console.log(inte...