DEV Community

Deepangshi S.
Deepangshi S.

Posted on • Updated on

AWS Fundamentals: Beginners Guide | .NET : Mastering

Amazon Web Services πŸš€

AWS is a comprehensive, evolving cloud computing platform provided by Amazon that includes a mixture of infrastructure as a service (IaaS), platform as a service (PaaS), and packaged software as a service (SaaS) offerings. AWS services can offer an organization tools such as compute power, database storage, and content delivery services.

Here’s a breakdown of the key concepts and components that make up AWS:

Compute Power

  • EC2 (Elastic Compute Cloud) for virtual servers: Provides scalable computing capacity in the cloud. Users can create virtual machines (instances), configure security and networking, and manage storage.
  • Lambda for serverless computing: Allows you to run code for virtually any type of application or backend service with zero administration. Just upload your code, and Lambda takes care of everything required to run and scale your code with high availability.

Storage Solutions

  • S3 (Simple Storage Service) for storage: Offers scalable object storage for data backup, archival, and analytics. A user can store and retrieve any amount of data, at any time, from anywhere on the web.
  • EBS (Elastic Block Store): Provides block-level storage volumes for use with EC2 instances. EBS volumes are highly available and reliable storage volumes that can be attached to any running instance in the same Availability Zone.

Database Services

  • RDS (Relational Database Service) for managed databases: Simplifies setup, operation, and scaling of a relational database for use in applications. Supports popular database engines like MySQL, PostgreSQL, Oracle, and SQL Server.
  • DynamoDB for NoSQL databases: A NoSQL database service that provides fast and predictable performance with seamless scalability.

Networking

  • VPC (Virtual Private Cloud): Offers a logically isolated section of the AWS Cloud where you can launch AWS resources in a virtual network that you define.
  • Route 53: A scalable and highly available Domain Name System (DNS) web service.

Developer Tools

  • CodeBuild: A fully managed build service that compiles source code, runs tests, and produces software packages that are ready to deploy.
  • CodeDeploy: Automates code deployments to any instance, including EC2 instances and instances running on-premises.

Management Tools

  • CloudWatch: Provides monitoring for AWS cloud resources and the applications that run on AWS.
  • CloudFormation: Gives developers and systems administrators an easy way to create and manage a collection of related AWS resources, provisioning and updating them in an orderly and predictable fashion.

Security & Identity Compliance

  • IAM (Identity and Access Management): Allows you to manage access to AWS services and resources securely. Using IAM, you can create and manage AWS users and groups, and use permissions to allow and deny their access to AWS resources.
  • KMS (Key Management Service): Enables easy creation and control of encryption keys used to encrypt your data.

Machine Learning

  • SageMaker: Provides every developer and data scientist with the ability to build, train, and deploy machine learning models quickly.
  • Rekognition: Adds image and video analysis to your applications.

Migration & Transfer Services

  • AWS Migration Hub: Provides a single location to track the progress of application migrations across multiple AWS and partner solutions.

Analytics

  • Athena: An interactive query service that makes it easy to analyze data in Amazon S3 using standard SQL.
  • Redshift: A fast, scalable data warehouse that makes it simple and cost-effective to analyze all your data across your data warehouse and data lake.

Serverless- Serverless computing is a cloud computing execution model in which the cloud provider dynamically manages the allocation and provisioning of servers. However, the responsibility of managing these servers and infrastructure falls to the cloud provider, not the developer or operator of the application. This allows developers to focus more on writing code and less on managing and operating servers or infrastructure.

Key Characteristics of Serverless Computing:

  • Automatic Scaling: Applications automatically scale up or down based on demand. If an application receives a surge in traffic, the serverless platform automatically allocates more resources to handle the load.
  • Event-driven: Many serverless platforms are inherently event-driven. Functions (small units of code) are typically executed in response to events or triggers, which can come from various sources like HTTP requests, file uploads, database changes, queue messages, and more.
  • Micro-billing: With serverless, you typically pay only for the compute time you consume. There is no charge when your code is not running. This can lead to significant cost savings compared to traditional cloud service models where you pay for continuous allocation of resources.
  • No Server Management: Developers do not need to provision, scale, or maintain servers. The cloud provider manages the infrastructure, operating systems, and server software.
  • Improved Developer Productivity: Since the cloud provider manages the infrastructure and servers, developers can spend more time on developing business logic and improving the application.

Examples of Serverless Services:

  • AWS Lambda: One of the first and most popular serverless computing services, allowing you to run code in response to events across AWS services.
  • Azure Functions: Microsoft's serverless compute service, enabling you to run event-triggered code without explicitly provisioning or managing infrastructure.
  • Google Cloud Functions: Google's serverless execution environment for building and connecting cloud services.
  • IBM Cloud Functions: IBM's serverless computing service based on Apache OpenWhisk, designed to execute code in response to events.

Use Cases:
Serverless architectures are particularly well-suited for applications with variable demand, event-driven workflows, and for microservices architectures. Common use cases include:

  • APIs and Web Applications: Building RESTful APIs and backend services for web and mobile applications without managing servers.
  • Data Processing: Performing work in response to uploads in a storage service (e.g., image or video processing) or to changes in a database.
  • Real-time File Processing: Automatically processing files as they are uploaded to a cloud storage service (e.g., converting uploaded images or videos to different formats).
  • Automating DevOps Tasks: Running scripts in response to various triggers to automate CI/CD pipelines, backups, and other DevOps practices.

DevOps Tools
In the real world, the choice of DevOps tools can vary based on specific needs and preferences. However, here is a list of some commonly used DevOps tools across different categories:

  • Version Control: Git, GitHub, GitLab, Bitbucket
  • CI/CD: Jenkins, GitLab CI/CD, GitHub Actions, CircleCI, Travis CI
  • Configuration Management: Ansible, Chef, Puppet, SaltStack
  • Containerization: Docker, Kubernetes
  • Infrastructure as Code (IaC): Terraform, AWS CloudFormation, Azure Resource Manager (ARM), Google Cloud Deployment Manager
  • Monitoring and Logging: Prometheus, Grafana, ELK Stack (Elasticsearch, Logstash, Kibana), Splunk, New Relic
  • Collaboration and Communication: Slack, Microsoft Teams, Jira, Confluence
  • Security: SonarQube, OWASP ZAP, Vault, Aqua Security Continuous Testing: Selenium, JUnit, Postman, SoapUI
  • Deployment: Spinnaker, AWS CodeDeploy, Azure DevOps, Octopus Deploy

AWS (Amazon Web Services), incorporating diagrams can be highly effective for visualizing concepts, architecture, workflows, and service integrations. Depending on your specific needs, different types of diagrams may be beneficial.

  • Architecture Diagrams- These diagrams are fundamental for illustrating how different AWS services connect and interact in a particular deployment or application. They typically show components like EC2 instances, load balancers, S3 buckets, and database services like RDS or DynamoDB. They can demonstrate how data flows between these services, which is crucial for understanding system design and functionality.

  • Network Diagrams- For projects involving Amazon VPC (Virtual Private Cloud), network diagrams can help illustrate how subnets, route tables, internet gateways, NAT devices, and security groups are configured and connected. This type is particularly useful for explaining network isolation and security mechanisms.

  • Process Diagrams- These diagrams can show the sequence of actions in an AWS environment, like the deployment process using AWS CodeDeploy, data processing using AWS Lambda functions, or a workflow in AWS Step Functions. They are useful for understanding operational procedures and software lifecycle processes.

  • Security Diagrams- To highlight the security measures in place, such as IAM roles and policies, encryption with AWS KMS, and logging with AWS CloudTrail, security diagrams can be instrumental. They can depict how different layers of security are applied across the cloud environment.

  • Data Flow Diagrams- Useful for depicting how data is ingested, processed, stored, and retrieved across various AWS services like Kinesis, S3, Redshift, and QuickSight. These are particularly important when discussing big data applications or data warehousing solutions.

Note: Tools to Create AWS Diagrams

  • AWS Architecture Icons: AWS provides its own set of architecture icons for all its services, which can be used in diagramming tools to create clear and accurate representations of your AWS architecture.
  • Lucidchart: A popular web-based diagramming tool with support for AWS architecture diagrams, offering a comprehensive set of AWS icons and templates.
  • Draw.io (diagrams.net): A free, open-source diagramming tool that also supports AWS icons and is excellent for quickly sketching out architectures.
  • Cloudcraft: A tool specialized for AWS that allows you to create 3D architecture diagrams automatically by connecting to your AWS account.
  • Microsoft Visio: A robust diagramming tool that supports custom shape imports, including AWS architecture icons, for detailed diagram creation.

Top comments (0)