AWS

How to use Cognito User Pool with custom OAuth scopes as authorizer for REST API

In this blog post, we will look at how to configure OAuth authentication for a REST API using AWS Cognito user Pool. We will create a REST API using AWS Lambda and API Gateway, integrate it with Cognito User Pool and create custom OAuth scopes to authenticate and authorize the REST API endpoints. Overview At […]

How to use Cognito User Pool with custom OAuth scopes as authorizer for REST API Read More »

How to package and deploy a python lambda function using AWS CLI

In this article, we will take a look at the steps required to package a python lambda function and deploy it using AWS CLI. Code the lambda function For this example, let’s create a new directory named “hello-world-lambda” and create a file named “lambda_function.py” inside it. Copy and paste the below code into the “lambda_function.py”

How to package and deploy a python lambda function using AWS CLI Read More »