AWS Lambda(python3.9)でCognitoにサインインする
この記事では、AWS の Lambda を使用して Cognito にサインインする方法について説明します。 著者は、「'urllib3.util.ssl_' から名前 'DEFAULT_CIPHERS' をインポートできません」というエラーに遭遇し、boto3 が最新の urllib3 を使用できないことが原因であることがわかりました。 次に、作成者は Lambda 関数にレイヤーを追加することでエラーを回避しました。
This article is about how to sign in to Cognito with Lambda on AWS. The author encountered an error "cannot import name 'DEFAULT_CIPHERS' from 'urllib3.util.ssl_'" and found that it was caused by boto3 not being able to use the latest urllib3. The author then avoid the error by adding a layer to the Lambda function.