Lambda订阅SNS通知(下)

创建函数

  • 分配角色

    zip function.zip index.js
    
    aws lambda create-function --function-name sns-db-function \
    --zip-file fileb://function.zip --handler index.handler --runtime nodejs12.x \
    --role arn:aws:iam::465691908928:role/fn-case-role
    

Related