Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/amilochau/core-aws

Core libraries for .NET Core applications on AWS ✅
https://github.com/amilochau/core-aws

aws-dynamodb aws-lambda dotnet framework

Last synced: 12 days ago
JSON representation

Core libraries for .NET Core applications on AWS ✅

Awesome Lists containing this project

README

        



License


Release


Version


Downloads



@amilochau/core-aws

`@amilochau/core-aws` is a set of opinionated packages used to create AWS Lambda functions with .NET 9.0 native AOT. This repository comes from a fork of multiple AWS dotnet packages, rewritten to focus on performances:

- [aws/aws-sdk-dotnet](https://github.com/aws/aws-sdk-net)
- [aws/aws-lambda-dotnet](https://github.com/aws/aws-lambda-dotnet)
- [aws/aws-xray-sdk-dotnet](https://github.com/aws/aws-xray-sdk-dotnet)

## Main features

- API Gateway: authentication checks, request validations
- DynamoDB: document attribute mapping, expressions based on code generation
- Integration: multi-lambda integration application baseline

## Usage

`amilochau/core-aws` is proposed as a set of NuGet packages.

1. Install the NuGet packages

Run the following command to install the NuGet packages - use the packages you want for your use case:

```pwsh
dotnet add package Milochau.Core.Aws.Abstractions
dotnet add package Milochau.Core.Aws.ApiGateway
dotnet add package Milochau.Core.Aws.Cognito
dotnet add package Milochau.Core.Aws.Core
dotnet add package Milochau.Core.Aws.DynamoDB
dotnet add package Milochau.Core.Aws.Integration
dotnet add package Milochau.Core.Aws.Lambda
dotnet add package Milochau.Core.Aws.SESv2
dotnet add package Milochau.Core.Aws.SNS
```

2. Use the packages

See [the reference project](./src/Reference%20Projects/Milochau.Core.Aws.ReferenceProjects.LambdaFunction/) to find usage examples.

---

## Contribute

Feel free to push your code if you agree with publishing under the [MIT license](./LICENSE).