Best of AWS LambdaSeptember 2022

  1. 1
    Article
    Avatar of awstipAWS Tip·4y

    Architecture serverless email sending application in AWS

    A poorly architecture email system may end up in failure to handle the large workload and result in loss in business. Amazon SQS will trigger an event to the ALB of the Lambda functions with JSON message payload.

  2. 2
    Article
    Avatar of awstipAWS Tip·4y

    Building an API using Serverless framework

    Serverless is a way to build and run applications & services without having to manage servers. There are 40+ Lambda templates for the most common use cases (e.g. microservice-http-endpoint, dynamodb-process-stream, sns-message, sqs-poller, s3-get-object, etc. You only pay for the time that Lambdas work.

  3. 3
    Article
    Avatar of glcGolang News·4y

    A simple, fast container image builder for Golang applications

    ko is a simple, fast container image builder for Go applications. It’s ideal for use cases where your image contains a single Go application without any/many dependencies on the OS base image. ko also includes support for simple YAML templating, which makes it a powerful tool for Kubernetes applications. The image must be pushed to Google Container Registry or Artifact Registry.

  4. 4
    Article
    Avatar of awstipAWS Tip·4y

    Build an API using AWS Lambda and API Gateway

    AWS has significantly impacted the serverless development industry as a top serverless supplier. AWS Lambda is an event-driven, serverless computing platform. API Gateway and Lambda proxy is a straightforward, effective solution for creating an API with just a single API method setup.

  5. 5
    Article
    Avatar of awstipAWS Tip·4y

    Serverless

    Serverless is an execution model where the cloud provider is responsible for executing a piece of code by dynamically allocating the resources. With Lambda, you can run code for virtually any type of application or backend service. But should not worry about the project or anything else.

  6. 6
    Article
    Avatar of awstipAWS Tip·4y

    Serverless Computing

    Serverless is event-driven, functional code which runs on a cloud in a stateless manner. If you send one request to the API gateway, that will poke to the function, and the function comes up to serve the request and go back to sleep and the next rest come it has no idea about the previous request. The above screen shows that the function has been successfully created.