Tag: programming
All the articles with the tag "programming".
-
Building Serverless Applications with AWS – API
API Gateway for serverless apps explored through resources, method requests, integration types, models, custom domains, and base path mapping.
-
AWS Step Function Versions and Aliases
Up until last week, when you deployed a new version of your State Machine in AWS Step Functions, the old version was gone and the ability to test or rollback was limited by your ability to re-push a p
-
Lambda Extension with Golang
Lambda extensions built with Golang enable cross-language reuse by running a sidecar HTTP API for caching with Momento and DynamoDB read-through.
-
Infrastructure as Code
Infrastructure as Code shifts deployment ownership to development teams, building a culture of accountability, customer focus, and faster response.
-
Caching with Momento and Golang
Caching. Simple. Useful. This architectural topic applies to a serverless app as well as an app with servers. Some functions never need caching, and some benefit from it right as the first user traffi
-
Golang Private Module with CDK CodeBuild
Golang private modules in AWS CodeBuild require specific configuration with .netrc files and GOPRIVATE variables in your CDK CodePipeline setup.
-
Custom API Gateway Authorizer with Golang
One of the nice things about building with Serverless is that you can design things in a way that the pieces are composeable. This means that you can put logic cohesively with other like-minded logic
-
Building Golang Lambda Functions
Golang Lambda functions with CDK explored through entry points, runtime selection, environment variables, and linker flags to reduce binary size.