List all AWS Secrets Manager Secrets and Get 1 Secret code: NodeJS + AWS SDK Example

Example code from my project MyChefAI.com I am working on right now. Hopefully if you are crawling google for a good example of listing secrets or pulling a given secret from AWS Secrets manager with NodeJS this helps you. async function listAllSecrets(nextToken) { const params = { MaxResults: 50 }; if (nextToken) { params.NextToken = nextToken; } try { const data = await secretsManager.listSecrets(params).promise(); for (const secret of data.SecretList) { console....

June 18, 2023 · 1 min · chart

AWS Releases Week of May 9: IoT SiteWise Updates, Glue Large Instances GA, and More!

As an agile developer and DevOps engineer, staying up to date with the latest news and updates from AWS is essential. This week, AWS has announced several updates to their services, including AWS IoT SiteWise, AWS Glue, Amazon QuickSight, and more. In this article, we will explore these updates and discuss potential use cases based on our own experiences. Disclaimer: this article is part of my project to develop an automated system for summarizing the weekly AWS updates, providing an easy to use framework for summarizing RSS feeds into automatic articles....

May 9, 2023 · 22 min · chart

Amazon Macie: A Comprehensive Data Security and Privacy Solution

In today’s world of data-driven business, protecting sensitive data is of utmost importance for businesses and end users alike. Amazon Macie seeks to address this concern by providing a fully managed data security and data privacy service that uses advanced machine learning and pattern matching algorithms to discover and protect your sensitive data inside Amazon S3. Amazon Macie simplifies data security by providing comprehensive data discovery, monitoring, and protection features for data stored in S3 buckets....

April 1, 2023 · 3 min · ghope

AWS Amplify Fix: A deployment is in progress

In this Arcadian.cloud help article I’ll show you in this article how to quickly fix the error in AWS Amplify A deployment is in progress. Here’s the summary. There are two reasons this may occur. 1: something went wrong while running an amplify push, your terminal disconnected and the deployment-state.json file got left in the wrong state. The deployment is actually still in progress, go check the Console to see the status in CloudFormation....

February 3, 2023 · 2 min · chart

Example: Using an @hasmany in AWS Amplify with React NextJS

Here is an example of how to use an @hasmany relationship in AWS Amplify with React. I am attempting to create a user and then associate many ToDo items to this user. I have created a model for the user and a model for the ToDo item with a graphql schema. I associate the ToDo Item to the User with an @hasMany. All of this is done while using authentication....

February 3, 2023 · 2 min · chart

A Comprehensive Guide to Amazon Chime: Features, Benefits, and Pricing

The world of work has changed significantly in the past few years, and the way we communicate, collaborate, and connect with one another has had to evolve as well. Enter Amazon Chime, a powerful and secure video and audio conferencing, messaging, and collaboration tool. Amazon Chime makes it easy to stay connected with colleagues, clients, and customers in an efficient, secure, and cost-effective way. In this comprehensive guide, we’ll take a look at the features, benefits, and pricing of Amazon Chime, as well as provide tips on how to get the most out of it....

December 17, 2022 · 8 min · chart