Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/starnowski/dynamodb-fun
https://github.com/starnowski/dynamodb-fun
Last synced: 5 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/starnowski/dynamodb-fun
- Owner: starnowski
- Created: 2021-07-11T17:45:21.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-03-09T09:38:10.000Z (over 1 year ago)
- Last Synced: 2024-10-11T08:14:38.263Z (28 days ago)
- Language: Java
- Size: 591 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# dynamodb-fun
[![Run tests for tutorial project](https://github.com/starnowski/dynamodb-fun/actions/workflows/tutorial.yml/badge.svg)](https://github.com/starnowski/dynamodb-fun/actions/workflows/tutorial.yml)
[![Run tests for flask project](https://github.com/starnowski/dynamodb-fun/actions/workflows/flaskapp.yml/badge.svg)](https://github.com/starnowski/dynamodb-fun/actions/workflows/flaskapp.yml)
[![Run tests for SAM java8 project](https://github.com/starnowski/dynamodb-fun/actions/workflows/sam_app_java8.yml/badge.svg)](https://github.com/starnowski/dynamodb-fun/actions/workflows/sam_app_java8.yml)
[![Run tests for SAM project](https://github.com/starnowski/dynamodb-fun/actions/workflows/sam.yml/badge.svg)](https://github.com/starnowski/dynamodb-fun/actions/workflows/sam.yml)
[![Run tests for typescript project](https://github.com/starnowski/dynamodb-fun/actions/workflows/typescript_dynamodb.yml/badge.svg)](https://github.com/starnowski/dynamodb-fun/actions/workflows/typescript_dynamodb.yml)
[![Run tests for python project with usage of sam tool](https://github.com/starnowski/dynamodb-fun/actions/workflows/typescript_serverless_python_sam_tests.yml/badge.svg)](https://github.com/starnowski/dynamodb-fun/actions/workflows/typescript_serverless_python_sam_tests.yml)
[![Run tests for SAM java11 project and Spring Cloud](https://github.com/starnowski/dynamodb-fun/actions/workflows/sam_app_java11_spring_cloud_serverless.yml/badge.svg)](https://github.com/starnowski/dynamodb-fun/actions/workflows/sam_app_java11_spring_cloud_serverless.yml)### Deploy dynamodb locally
https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/DynamoDBLocal.DownloadingAndRunning.html### Boto3 for dynamodb
https://boto3.amazonaws.com/v1/documentation/api/1.16.63/guide/dynamodb.html### Python Rest API server
https://programminghistorian.org/en/lessons/creating-apis-with-python-and-flaskhttps://blog.miguelgrinberg.com/post/the-flask-mega-tutorial-part-i-hello-world
#### jinja2 templates
https://blog.miguelgrinberg.com/post/the-flask-mega-tutorial-part-ii-templates# Cool Dynamodb guide
https://www.dynamodbguide.com/what-is-dynamo-db
### Expression
https://www.dynamodbguide.com/expression-basics### Request - Python module
https://docs.python-requests.org/en/master/user/quickstart/### AWS Serverless application - Python Flask + DynamoDB
https://www.serverless.com/blog/flask-python-rest-api-serverless-lambda-dynamodb### AWS DynamoDB - core concept
https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/HowItWorks.CoreComponents.html#HowItWorks.CoreComponents.TablesItemsAttributeshttps://blog.finxter.com/how-to-filter-a-list-in-python/
# Table design based on query requirements
https://www.dynamodbguide.com/working-with-multiple-items### Date types for DynamoDB
https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/HowItWorks.NamingRulesDataTypes.html#HowItWorks.DataTypes.String### Lambda docker
https://hub.docker.com/r/amazon/aws-lambda-python
#### Invoking local lambda
https://docs.aws.amazon.com/serverless-application-model/latest/developerguide/serverless-sam-cli-using-invoke.html### Lambda image testing
https://docs.aws.amazon.com/lambda/latest/dg/images-test.htmlhttps://docs.aws.amazon.com/lambda/latest/dg/python-image.html
### Lambda that return json object
https://docs.aws.amazon.com/lambda/latest/dg/python-handler.html### Lambda execution lifetime
https://docs.aws.amazon.com/lambda/latest/dg/runtimes-context.html### Lambda developer guide
https://docs.aws.amazon.com/lambda/latest/dg/lambda-dg.pdf### Lambda local invocation passing query and path parameters
https://aws.amazon.com/blogs/opensource/developing-microservices-using-container-image-support-for-aws-lambda-and-aws-cdk/
https://stackoverflow.com/questions/31329958/how-to-pass-a-querystring-or-route-parameter-to-aws-lambda-from-amazon-api-gatewhttps://docs.aws.amazon.com/apigateway/latest/developerguide/http-api-dynamo-db.html
### AWS SAM Lambda
https://docs.aws.amazon.com/serverless-application-model/latest/developerguide/serverless-sam-cli-using-start-api.html
https://docs.aws.amazon.com/serverless-application-model/latest/developerguide/sam-cli-command-reference-sam-local-start-lambda.html
https://docs.aws.amazon.com/lambda/latest/dg/services-apigateway-template.html### AWS SAM Lambda - java
https://github.com/aws-samples/aws-sam-java-rest### DynamoDB - test container
https://www.sebastianhesse.de/2020/05/14/using-dynamodb-local-and-testcontainers-in-java-within-bitbucket-pipelines/
https://nickolasfisher.com/blog/Setup-and-Use-a-DynamoDB-Test-Container-with-the-AWS-Java-SDK-20
https://www.viralpatel.net/spring-boot-dynamodb-integration-test-testcontainers/### DynamoDB - Reserved Words
https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/ReservedWords.html
https://dynobase.dev/dynamodb-reserved-words/