AppConfig configures, validates, and deploys dynamic configurations to your application.
Continue reading “[AWS] AppConfig”Category Archives: AWS
[AWS] AWS CodeGuru
AWS CodeGuru performs automated code reviews using Machine Learning.
Continue reading “[AWS] AWS CodeGuru”[AWS] AWS CodeArtifact
Code Artifact is used to store, publish, and share software packages.
Continue reading “[AWS] AWS CodeArtifact”[AWS -Python] DynamoDB Batch and Paging with Boto3
This post is the continuation from the previous post [AWS -Python] DynamoDB with Boto3, which deals with the basic DynamoDB operations.
Continue reading “[AWS -Python] DynamoDB Batch and Paging with Boto3”[AWS -Python] DynamoDB with Boto3
Let’s work with DynamoDB with the Python Boto3 library.
We can
- list tables
- retrieve table information including keys and indexes
- create a table
- read, write, and delete items
- delete a table
https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html
Continue reading “[AWS -Python] DynamoDB with Boto3”[AWS Lab] API Gateway – Request Validation – Query Strings
In this lab, we will learn how to validate an API request.
Overview
- Source: API Gateway – REST API
- Route: GET /greet?name=abc
- Target: Mock
- Returns the validation error when the required query string ‘name’ does not exist
[AWS] Lambda with Python
This post shows variable small examples of Lambda functions to demonstrate how you can do with Lambda. The choice of language is Python but it is easy to migrate to other programming languages.
Continue reading “[AWS] Lambda with Python”[AWS] CloudFormation – Stacks
Stacks take logical resources from a template and create, update, or delete physical resources in AWS. In this post, we can delve into advanced feature of stacks.
Continue reading “[AWS] CloudFormation – Stacks”