aws_cloud_practitioner

Global Infrastructure and Reliability

Regions

A Region is a geographical area that contains AWS resources.

Each AWS Region consists of two or more isolated and physically separate Availability Zones within a geographic Region.

Inside each Region, there are multiple data centers that have all the compute, storage, and other services you need to run your applications.

Each Region can be connected to each other Region through a high speed fiber network.

Regional data sovereignty is part of the critical design of AWS Regions. Each Region is isolated from every other Region in the sense that absolutely no data goes in or out of your environment in that Region without you explicitly granting permission for that data to be moved.

Selecting a Region

Factors to be considered:

For example, if your company requires all of its data to reside within the boundaries of the UK, you would choose the London Region.

For example, your company is based in Washington, DC, and many of your customers live in Singapore. You might consider running your infrastructure in the Northern Virginia Region to be close to company headquarters, and run your applications from the Singapore Region.

For example, Amazon Braket is not yet available in every AWS Region around the world, so developers would have to run it in one of the Regions that already offers it.

For example, the way Brazil’s tax structure is set up, it might cost 50% more to run the same workload out of the São Paulo Region compared to the Oregon Region.


Availability Zones

An Availability Zone is a single data center or a group of data centers within a Region.

example

Each Availability Zone is one or more discrete data centers with redundant power, networking, and connectivity.

Availability Zones are located tens of miles apart from each other. This is close enough to have low latency between Availability Zones. and if a disaster occurs in one part of the Region, they are distant enough to reduce the chance that multiple Availability Zones are affected.

example

If us-west-1a AZ were to fail, your application would still be running in us-west-1b.


Edge Locations

An edge location is a site that Amazon CloudFront uses to store cached copies of your content closer to your customers for faster delivery.

Caching copies of data closer to the customers all around the world uses the concept of content delivery networks, or CDNs.

Amazon CloudFront is a service that helps deliver data, video, applications, and APIs to customers around the world with low latency and high transfer speeds.

Amazon CloudFront uses what are called Edge locations, all around the world, to help accelerate communication with users, no matter where they are.

AWS Edge locations also run a domain name service, or DNS, known as Amazon Route 53, helping direct customers to the correct web locations with reliably low latency.

AWS Outposts is a service that you can use to run AWS infrastructure, services, and tools in your own on-premises data center in a hybrid approach.


Edge Locations Example

example


AWS Global Infrastructure in a Nutshell


Global Infrastructure Notes


Infrastructure Provisioning

Ways to interact with AWS services

  1. AWS Management Console
  2. AWS Command Line Interface
  3. Software Development Kits

The AWS Management Console is a web-based interface for accessing and managing AWS services.

AWS CLI enables you to control multiple AWS services directly from the command line within one tool.

SDKs make it easier for you to use AWS services through an API designed for your programming language or platform.

There are also other ways you can manage your AWS environment using managed tools like AWS Elastic Beanstalk, and AWS CloudFormation.


AWS Elastic Beanstalk

AWS Elastic Beanstalk is a service that helps you provision Amazon EC2-based environments.

With AWS Elastic Beanstalk, you provide code and configuration settings, and Elastic Beanstalk deploys the resources necessary to perform the following tasks:


AWS CloudFormation

AWS CloudFormation is an infrastructure as code tool that allows you to define a wide variety of AWS resources in a declarative way using JSON or YAML text-based documents called CloudFormation templates.


Infrastructure Provisioning Notes


References