How should a SysOps administrator meet these requirements?
Create an Auto Scaling group with an Application Load Balancer (ALB). Add an Amazon CloudFront distribution with the ALB as the origin.
Create an Auto Scaling group with an Application Load Balancer (ALB). Add an accelerator with AWS Global Accelerator with the ALB as an endpoint.
Create an Auto Scaling group with a Network Load Balancer (NLB). Add an Amazon CloudFront distribution with the NLB as the origin.
Create an Auto Scaling group with a Network Load Balancer (NLB). Add an accelerator with AWS Global Accelerator with the NLB as an endpoint.
Explanations:
ALBs only support HTTP and HTTPS traffic. This option cannot handle non-HTTP TCP traffic as required.
ALBs cannot handle non-HTTP TCP traffic. Additionally, Global Accelerator cannot be used with an ALB.
CloudFront works with HTTP/HTTPS traffic, but NLB is not typically used with CloudFront as the origin.
NLB supports both TCP and HTTP traffic, and AWS Global Accelerator can be used to improve latency.