2022-02-19から1日間の記事一覧

{Lambda}チュートリアル: Amazon SQS で Lambda の使用

AWS

https://docs.aws.amazon.com/ja_jp/lambda/latest/dg/with-sqs-example.html -- 1. コマンド等のインストール -- 1.1 aws cli version 2 インストール curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip"unzip awscliv2.z…

{Lambda}チュートリアル: Amazon Simple Notification Service での AWS Lambda の使用

AWS

https://docs.aws.amazon.com/ja_jp/lambda/latest/dg/with-sns-example.html -- 1. コマンド等のインストール -- 1.1 aws cli version 2 インストール curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip"unzip awscliv2.z…

{Lambda}チュートリアル: Amazon S3 トリガーを使用してサムネイル画像を作成する

AWS

https://docs.aws.amazon.com/ja_jp/lambda/latest/dg/with-s3-tutorial.html -- 1. コマンド等のインストール -- 1.1 aws cli version 2 インストール curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip"unzip awscliv2.z…

ヒント句の分割指定

DB

MySQL (8.0.26) drop table tab1;create table tab1( col1 bigint ,col2 bigint ); drop table tab2;create table tab2( col1 bigint ,col2 bigint ); drop procedure proc1; delimiter //create procedure proc1(in x int)begin declare i int; set i = 0; …