Posts

Showing posts from June, 2021

Amazon S3 to DynamoDB Automation

Image
Export Object from S3 to DynamoDB using AWS Lambda In a matter of seconds and without a zero cost using serverless Lambda, allows you to automatically send object from Amazon S3 to Amazon DynamoDB. In this blog, we are going to be creating an AWS Lambda in Python to automatically process any JSON files uploaded to a S3 bucket into a DynamoDB table. Amazon S3 Amazon Simple Storage Service (Amazon S3) is an object storage service that offers industry-leading scalability, data availability, security, and performance. This means customers of all sizes and industries can use it to store and protect any amount of data for a range of use cases, such as data lakes, websites, mobile applications, backup and restore, archive, enterprise applications, IoT devices, and big data analytics Amazon DynamoDB Amazon DynamoDB is a fully managed proprietary NoSQL database service that supports key–value and document data structures and is offered by Amazon.com as par

Auto tag AWS resources with Lambda

Image
Automating AWS resource Tagging  Why Tagging resources? Tagging AWS resources is very important when you want to automate some tasks based on the tags, like you want to install patch automatically based on the tags from SSM association or you want to get a list of resources based on the tags. There are many aspects where tagging the resources will be required.  In this blog, I will be showing on automatically adding a tag CreatedBy to the S3 bucket. You can leverage the same logic to other AWS resources. Architectural design