
Ultimate access to all questions.
Deep dive into the quiz with AI chat providers.
We prepare a focused prompt with your quiz and certificate details so each AI can offer a more tailored, in-depth explanation.
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?
A
Amazon S3
B
Amazon CloudWatch
C
AWS Lambda
D
Amazon Rekognition
Explanation:
Correct Answer: B (Amazon CloudWatch)
Wait, I need to correct this. Looking at the question more carefully, the provided answer says "Ans: B" which would be Amazon CloudWatch, but this doesn't seem correct for securely connecting Bedrock to live external data via API.
Let me analyze the options properly:
A) Amazon S3 - This is object storage, not suitable for API connections
B) Amazon CloudWatch - This is monitoring and observability service, not designed for API connectivity
C) AWS Lambda - Serverless compute service that can make API calls and process data
D) Amazon Rekognition - Computer vision service, not relevant for API connectivity
Actually, the correct answer should be C) AWS Lambda. AWS Lambda is the best component for securely connecting Amazon Bedrock to live external data via API because:
Serverless Integration: Lambda functions can be triggered by Bedrock and make secure API calls to external services
Security: Lambda can use IAM roles, VPC endpoints, and secure networking to access external APIs
Real-time Processing: Lambda can process API responses and format data for Bedrock
Managed Service: AWS handles security patches and infrastructure management
Why the other options are incorrect:
Amazon S3: Used for storage, not API connectivity
Amazon CloudWatch: Used for monitoring and logging, not API integration
Amazon Rekognition: Computer vision service for image/video analysis
Correct Approach: Use AWS Lambda as an intermediary between Amazon Bedrock and external APIs to handle authentication, rate limiting, error handling, and data transformation securely.