Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/awslabs/aws-apigateway-lambda-authorizer-blueprints
Blueprints and examples for Lambda-based custom Authorizers for use in API Gateway.
https://github.com/awslabs/aws-apigateway-lambda-authorizer-blueprints
Last synced: 11 days ago
JSON representation
Blueprints and examples for Lambda-based custom Authorizers for use in API Gateway.
- Host: GitHub
- URL: https://github.com/awslabs/aws-apigateway-lambda-authorizer-blueprints
- Owner: awslabs
- License: apache-2.0
- Created: 2016-02-16T22:33:25.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2022-04-03T22:01:10.000Z (over 2 years ago)
- Last Synced: 2024-08-02T14:07:56.407Z (4 months ago)
- Language: C#
- Size: 72.3 KB
- Stars: 699
- Watchers: 41
- Forks: 364
- Open Issues: 19
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- jimsghstars - awslabs/aws-apigateway-lambda-authorizer-blueprints - Blueprints and examples for Lambda-based custom Authorizers for use in API Gateway. (C# #)
README
# Amazon API Gateway - Custom Authorizer Blueprints for AWS Lambda
We've added blueprints and examples in 3 languages for Lambda-based custom Authorizers for use in API Gateway.## Java
Not available in the Lambda console. Use the AuthPolicy object to generate and serialize IAM policies for your custom authorizer. See javadoc comments for more details.## NodeJS
Also available in the Lambda console, the NodeJS blueprint makes it easy to generate IAM policies, including Conditions.## Python
Also available in the Lambda console, the Python blueprint includes the AuthPolicy class, which makes generating IAM policies simple and easy to understand.## Go
Not available in the Lambda console. Use the AuthorizerResponse object to generate IAM policies for your custom authorizer. See comments for more details.## Rust
Not available in the Lambda console. Using `awslabs/aws-lambda-rust-runtime`. Use the APIGatewayPolicyBuilder object to generate IAM policies for your custom authorizer. See comments for more details.## Docs ##
For more details, see public documentation for:
- API Gateway Custom Authorizers -- [Blog Post](https://aws.amazon.com/blogs/compute/introducing-custom-authorizers-in-amazon-api-gateway/) -- [Developer Guide](http://docs.aws.amazon.com/apigateway/latest/developerguide/use-custom-authorizer.html)
- IAM Policy Language -- [API Gateway Developer Guide](http://docs.aws.amazon.com/apigateway/latest/developerguide/permissions.html) -- [Policy Language Reference](http://docs.aws.amazon.com/IAM/latest/UserGuide/reference_policies.html)