Boto3でLambdaを起動させる - Qiita
import boto3 client = boto3.client('lambda') # Lambdaのevent変数に入れる値 query = { "test1": "test", "test2": "test" } # Lambdaを実行 response...