Skip to main content

Posts

Showing posts with the label aws

Stay Up to Date with Daily AWS Updates Delivered to Your Inbox

Stay Up to Date with Daily AWS Updates Delivered to Your Inbox Stay Up to Date with Daily AWS Updates Delivered to Your Inbox Keeping up with the latest features and updates in Amazon Web Services (AWS) can be challenging. AWS releases new features and updates… Stay Up to Date with Daily AWS Updates Delivered to Your Inbox Keeping up with the latest features and updates in Amazon Web Services (AWS) can be challenging. AWS releases new features and updates regularly, which can sometimes be difficult to keep track of. Fortunately, there’s an easy way to stay up to date with AWS feature releases — Amazon Simple Notification Service (SNS). In this article, we’ll take a closer look at how you can use Amazon SNS to subscribe to AWS daily feature updates. Amazon SNS is a fully managed messaging service that allows you to send messages to a large number of subscribers through a variety of transport protocols, including email, SMS, and HTTP/HTTPS. You can use Amazon SNS to send notificat...

Manage MongoDB Atlas Deployments with AWS CDK

Manage MongoDB Atlas Deployments with AWS CDK Manage MongoDB Atlas Deployments with AWS CDK MongoDB Atlas is a fully-managed cloud-based database service offered by MongoDB. It offers a variety of features such as automatic… Manage MongoDB Atlas Deployments with AWS CDK MongoDB Atlas is a fully-managed cloud-based database service offered by MongoDB. It offers a variety of features such as automatic backups, automatic scaling, and easy integration with other cloud services. AWS Cloud Development Kit(CDK) is a tool provided by Amazon Web Services (AWS) that allows you to define infrastructure as code using familiar programming languages such as TypeScript, JavaScript, Python, and others. MongoDB recently announced general availability for Atlas Integrations for AWS CloudFormation and CDK. In this article, we will go through the process of deploying MongoDB Atlas with AWS CDK. Prerequisites Before we start, you will need the following: An AWS account AWS CDK installed on your lo...

Why companies fail on cloud? A perspective from a cloud consultant

Why companies fail on cloud? A perspective from a cloud consultant Why companies fail on cloud? A perspective from a cloud consultant The cloud has become an increasingly popular destination for businesses looking to take advantage of its scalability, cost-effectiveness… Why companies fail on cloud? A perspective from a cloud consultant The cloud has become an increasingly popular destination for businesses looking to take advantage of its scalability, cost-effectiveness, and flexibility. However, despite the many benefits that cloud computing offers, not all companies that move to the cloud are successful. As a cloud consultant, I have seen firsthand the reasons why some companies fail on the cloud. In this article, I will discuss the most common reasons why companies fail on the cloud and how they can avoid these pitfalls. Lack of Strategy One of the biggest mistakes that companies make when moving to the cloud is not having a clear strategy. They may have a vague idea of what...

AWS Backups for Centralized Backups Solution

AWS Backups for Centralized Backup Solution AWS Backups for Centralized Backup Solution AWS Backup is a fully managed backup service that makes it easy to centralize and automate the backup of data across AWS services in the… AWS Backups for Centralized Backup Solution AWS Backups AWS Backup is a fully managed backup service that makes it easy to centralize and automate the backup of data across AWS services in the cloud as well as on-premises environments. This service facilitates the configuration of backup policies and monitoring of activities for all your AWS resources within a single interface. By automating and consolidating backup tasks, which were previously performed on a service-by-service basis, it eliminates the need for creating custom scripts and manual processes Overview of AWS Backup AWS Backup allows you to create backup policies that automate the backup of your data across AWS services such as Amazon EC2, Amazon EBS, Amazon RDS, Amazon DynamoDB, Amazon S3,...

AWS Lambda Function URLs

AWS Lambda Function URLs AWS Lambda Function URLs AWS Lambda is a Serverless computing service offered by Amazon Web Services (AWS) that allows developers to run code without provisioning… AWS Lambda Function URLs AWS Lambda AWS Lambda is a Serverless computing service offered by Amazon Web Services ( AWS ) that allows developers to run code without provisioning or managing servers. In this tutorial, we will explore AWS Lambda Function URLs , which are the endpoints that allow you to invoke your Lambda functions. AWS Lambda Function URLs are unique HTTP endpoints that you can create using AWS Console, SDK or any other IaC tool. These URLs are used to trigger your Lambda function, and they can be integrated with a variety of workloads. Function URLs are dual stack-enabled, supporting IPv4 and IPv6. After you configure a function URL for your function, you can invoke your function through its HTTP(S) endpoint via a web browser, curl, Postman, or any HTTP client. Once you create ...

Introduction to DynamoDB Shell

Introduction to DynamoDB Shell Introduction to DynamoDB Shell Amazon DynamoDB is a Serverless, key-value No-SQL database that is fully managed by AWS. Recently, AWS announced the release of ddbsh, a… Introduction to DynamoDB Shell AWS Dynamo DB Amazon DynamoDB is a Serverless , key-value No-SQL database that is fully managed by AWS. Recently, AWS announced the release of ddbsh , a command line interface that was inspired by similar projects like MySQL CLIs. With ddbsh, users can easily input SQL-like commands that will be automatically translated to DynamoDB queries. This new tool offers a simple command line interface and supports a wide range of Data Definition Language (DDL) and Data Manipulation Language (DML) commands, making it a versatile and useful addition to DynamoDB’s ecosystem. In order to use the new CLI, we need to follow a few steps. Cmake is required for building the project, if you don’t have it, get it here . We need to build AWS C++ SDK from the source code,...

Cloud Development Kit (CDK) Migration Guide

Cloud Development Kit (CDK) Migration Guide Cloud Development Kit (CDK) Migration Guide The AWS Cloud Development Kit (CDK) is an open source software development framework from Amazon Web Services (AWS) that allows developers… Cloud Development Kit (CDK) Migration Guide The AWS Cloud Development Kit ( CDK ) is an open source software development framework from Amazon Web Services ( AWS ) that allows developers to define cloud infrastructure resources in code using familiar programming languages such as TypeScript, Python, and Java. With the CDK, developers can easily define, provision, and manage AWS resources in a programmatic and scalable way, leveraging the power of AWS CloudFormation under the hood. The CDK simplifies the process of deploying and managing cloud infrastructure, reducing the likelihood of errors and making it easier to maintain infrastructure as code . The CDK has been released in two major versions, v1 and v2 . CDK v1 entered maintenance on June 1, 2022 . ...