Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DRAFT: CRUD API - DDB - EventPublisher #17

Open
wants to merge 13 commits into
base: main
Choose a base branch
from
Open
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
# Dependencies
/node_modules
**/node_modules/*

# Production
/build
**/cdk.out/*

# Generated files
.docusaurus
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
version = 0.1
[default.deploy.parameters]
stack_name = "rocket-on-lambda"
stack_name = "actix-on-lambda"
resolve_s3 = true
s3_prefix = "rocket-on-lambda"
s3_prefix = "actix-on-lambda"
region = "eu-west-1"
profile = "dev"
profile = "sandbox"
capabilities = "CAPABILITY_IAM"
image_repositories = []
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,6 @@ Outputs:
# ServerlessHttpApi is an implicit API created out of Events key under Serverless::Function
# Find out more about other implicit resources you can reference within SAM
# https://github.com/awslabs/serverless-application-model/blob/master/docs/internals/generated_resources.rst#api
RocketWebApi:
ActixWebApi:
Description: "API Gateway endpoint URL for Prod stage for Hello World function"
Value: !Sub "https://${ServerlessHttpApi}.execute-api.${AWS::Region}.${AWS::URLSuffix}/"
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,6 @@ Outputs:
# ServerlessHttpApi is an implicit API created out of Events key under Serverless::Function
# Find out more about other implicit resources you can reference within SAM
# https://github.com/awslabs/serverless-application-model/blob/master/docs/internals/generated_resources.rst#api
RocketWebApi:
AxumWebApi:
Description: "API Gateway endpoint URL for Prod stage for Hello World function"
Value: !Sub "https://${ServerlessHttpApi}.execute-api.${AWS::Region}.${AWS::URLSuffix}/"
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
version = 0.1
[default.deploy.parameters]
stack_name = "lambda-per-verb"
resolve_s3 = true
s3_prefix = "lambda-per-verb"
region = "eu-west-1"
profile = "sandbox"
capabilities = "CAPABILITY_IAM"
image_repositories = []
89 changes: 89 additions & 0 deletions templates/patterns/api-patterns/lambda-per-verb/template.yaml
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This isn't complete yet is it?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yeah, its complete and works

Original file line number Diff line number Diff line change
@@ -0,0 +1,89 @@
AWSTemplateFormatVersion: '2010-09-09'
Transform: AWS::Serverless-2016-10-31

# More info about Globals: https://github.com/awslabs/serverless-application-model/blob/master/docs/globals.rst
Globals:
Function:
Timeout: 3

Resources:
GetByIdFunction:
Type: AWS::Serverless::Function
Properties:
CodeUri: .
Handler: bootstrap
Runtime: provided.al2023
Architectures:
- arm64
Events:
Api:
Type: HttpApi
Properties:
Path: /{id}
Method: GET
Metadata:
BuildMethod: rust-cargolambda
BuildProperties:
Binary: get-by-id
DeleteByIdFunction:
Type: AWS::Serverless::Function
Properties:
CodeUri: .
Handler: bootstrap
Runtime: provided.al2023
Architectures:
- arm64
Events:
Api:
Type: HttpApi
Properties:
Path: /{id}
Method: DELETE
Metadata:
BuildMethod: rust-cargolambda
BuildProperties:
Binary: delete-by-id
PostFunction:
Type: AWS::Serverless::Function
Properties:
CodeUri: .
Handler: bootstrap
Runtime: provided.al2023
Architectures:
- arm64
Events:
Api:
Type: HttpApi
Properties:
Path: /
Method: POST
Metadata:
BuildMethod: rust-cargolambda
BuildProperties:
Binary: post
PutByIdFunction:
Type: AWS::Serverless::Function
Properties:
CodeUri: .
Handler: bootstrap
Runtime: provided.al2023
Architectures:
- arm64
Events:
Api:
Type: HttpApi
Properties:
Path: /{id}
Method: PUT
Metadata:
BuildMethod: rust-cargolambda
BuildProperties:
Binary: put-by-id

Outputs:
# ServerlessHttpApi is an implicit API created out of Events key under Serverless::Function
# Find out more about other implicit resources you can reference within SAM
# https://github.com/awslabs/serverless-application-model/blob/master/docs/internals/generated_resources.rst#api
LambdaWebApi:
Description: "API Gateway endpoint URL for Prod stage for Hello World function"
Value: !Sub "https://${ServerlessHttpApi}.execute-api.${AWS::Region}.${AWS::URLSuffix}/"
Loading
Loading