Amazon Web Services

Understand the AWS Cloud architecture and services. Serverless Architectures, AWS Lambda, ECS, EC2, EKS, S3, etc.

Serverless allows you to build and run applications and services without worrying about managing and operating servers or runtimes.

AWS Lambda is to run code without provisioning or managing servers. It’s an event-driven, serverless compute service. You pay only for the compute time you consume—there is no charge when your code is not running.

Amazon Elastic Container Service (Amazon ECS) is a highly scalable, high-performance container management service that supports Docker containers. Amazon ECS enables you to run containerized applications on a managed cluster of Amazon EC2 instances.

Amazon Elastic Kubernetes Service (Amazon EKS) is a fully managed Kubernetes service. Kubernetes is an open source software that enables you to deploy and manage containerized applications at scale.

Amazon S3 or Amazon Simple Storage Service is a service offered by Amazon Web Services that provides storage, like CSV data files for Backup and restore, Disaster recovery (DR) and to Archive through a web service interface. Amazon S3 stores data as objects, which contain a file and metadata. Objects are uploaded and stored in buckets.

Amazon S3 Glacier is a secure, durable, and low-cost cloud storage service for data archiving and long-term backup. Standard retrievals typically complete within 3 to 5 hours.

The Amazon S3 Glacier Deep Archive storage class is an even more cost-effective way to store important, infrequently accessed data. Data stored in Amazon S3 Glacier Deep Archive can be retrieved within 12 hours.

Lifecycle configuration rules, with this you can tell Amazon S3 to automatically transition objects to less expensive storage classes, archive, or delete them after a set period of time. For example, you can set an Amazon S3 bucket to archive objects to Amazon S3 Glacier after 30 days, and then delete them after 5 years.

Amazon EBS allows you to create persistent block storage volumes and attach them to Amazon EC2 instances. Without storage attached, EC2 instances use ephemeral storage that only lasts until the instance stops, terminates, or the underlying disk drive fails.

Check out these links below to learn more.