You can now activate deletion protection for your Amazon Cognito user pools. When you configure a user pool with deletion protection, the pool cannot be deleted by any user. Deletion protection is now active by default for new user pools created through the AWS Console. You can activate or deactivate deletion protection for an existing…
Read More →Category: AWScommunity
It allows the user to define state machines (workflows) that connect various tasks (states). To make it easy, AWS provides a Workflow Studio that simplifies the definition step of the workflows. There are two options for workflow types: Standard Express Besides all the differences defined in the documentation, an important one for Hybrid architectures is the Activity support: In…
Read More →Cloudformation is very useful for creating and deploying AWS resources such as EC2 instances, S3 buckets, and ECS clusters. It not only allows you to keep your infrastructure as code, but it also keeps track of all of the resources together as a logical unit known as a Stack. It goes like this. Write Template File…
Read More →Introduction There are a few things to consider when deciding when to use a function URL versus building an API Gateway endpoint. Function URLs are best suited for single-function microservices with a public endpoint that doesn’t require the advanced functionality of API Gateway. Function URLs can be used to apply the following patterns: Mono-Lambda APIs:…
Read More →To run a Docker image that is available in Amazon ECR, you can pull it to your local environment with the docker pull command. 1. From an EC2 instance/Workstation, run the below command as mentioned here [1] to install AWS CLI ———– curl “https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip” -o “awscliv2.zip” unzip awscliv2.zip sudo ./aws/install ———– …
Read More →