Which solutions meet these requirements?
(Choose two.)
Create an Amazon API Gateway REST API. Configure this API with direct integrations to DynamoDB by using API Gateway’s AWS integration type.
Create an Amazon API Gateway HTTP API. Configure this API with direct integrations to Dynamo DB by using API Gateway’s AWS integration type.
Create an Amazon API Gateway HTTP API. Configure this API with integrations to AWS Lambda functions that return data from the DynamoDB tables.
Create an accelerator in AWS Global Accelerator. Configure this accelerator with AWS Lambda@Edge function integrations that return data from the DynamoDB tables.
Create a Network Load Balancer. Configure listener rules to forward requests to the appropriate AWS Lambda functions.
Explanations:
Amazon API Gateway REST API with direct integration to DynamoDB supports AWS service integration, enabling direct HTTPS access to DynamoDB without requiring intermediate Lambda functions.
API Gateway HTTP APIs do not natively support direct integration with DynamoDB, as HTTP APIs are limited in integration options compared to REST APIs.
API Gateway HTTP API can invoke AWS Lambda functions that retrieve data from DynamoDB, providing a flexible, scalable, and serverless approach to exposing data via HTTPS.
AWS Global Accelerator is primarily for improving application availability and performance, and does not provide direct access or API integrations with DynamoDB.
Network Load Balancers do not directly support integration with Lambda functions; this option would require additional resources to route requests, which is not ideal for serverless.