
Ultimate access to all questions.
A startup wants to build a travel planning chatbot using Amazon Bedrock. The chatbot must access real-time flight data via API. Which AWS component is best for securely connecting Bedrock to live external data?
Explanation:
The correct answer is C) AWS Lambda, not B as indicated in the provided answer.
Explanation:
AWS Lambda is the best choice for securely connecting Amazon Bedrock to live external data via APIs because Lambda functions can act as a secure intermediary between Bedrock and external APIs. Lambda can handle authentication, API calls, data transformation, and security measures while maintaining the serverless architecture.
Amazon S3 is for object storage, not for real-time API connections.
Amazon CloudWatch is for monitoring and observability, not for API integrations.
Amazon Rekognition is for image and video analysis, completely unrelated to API connectivity.
Correct approach: Use AWS Lambda to securely call external flight APIs, process the data, and return it to Amazon Bedrock for the chatbot functionality.