Introduction
Route 53 is a highly available and scalable domain name service and primarily provides the following four functionalities:
- Domain management: Allows you to register a new domain and transfers the existing domain
- DNS management:
- Route 53 translates friendly domain names such as
abc.com
into IP addresses such as1.2.3.4
. - Route 53 uses its authoritative DNS server across a global network to respond to DNS queries, which helps in reducing latency.
- Route 53 can route internet traffic to CloudFront distribution, Elastic Beanstalk endpoint, ELB record, or S3 bucket. Also, there's no extra charge for DNS queries to these resources.
- Route 53 translates friendly domain names such as
- Traffic management
- Health check of the domain:
- Route 53 monitors the health of your resources, such as web and email servers
- Route 53 health checkers are placed globally
- Route 53 automatically sends a request over the internet to the application to verify that it's reachable, available, and functional
- You can also configure CloudWatch alarms to send a notification...