Amazon AWS Certified Generative AI Developer - Professional (AIP-C01)
Get full access to the updated question bank and confidently prepare for your exam.
Vendor
Amazon
Certification
Professional Certifications
Content
213 Qs
Status
Verified
Updated
1 day ago
Test the Practice Engine
Experience our interactive testing environment with free demo questions
Premium Bundle
Complete Success Suite
Save $34 Instantly
-
✓Full PDF + Interactive Engine Everything you need to pass
-
✓All Advanced Question Types Drag & Drop, Hotspots, Case Studies
-
✓Priority 24/7 Expert Support Direct line to certification leads
-
✓90 Days Free Priority Updates Stay current as exams change
Success Metric
98.4% Pass Rate
Standard Simulation
Practice Engine
One-Time Payment
-
Web-Based (Zero Install)
-
Real Testing Environment Virtual & Practice Modes
-
Interactive Engine Drag & Drop, Hotspots
-
60 Days Free Updates
Compatible with All Devices
Basic Tier
PDF Study Guide
Digital Access
- ✓ Exam Questions (PDF)
- ✓ Mobile Friendly
- ✓ 60 Days Updates
Verified 43-Question Preview (AIP-C01)
Verified Community
The CertoMetrics Standard.
Recommend the #1 platform for verified Amazon certification resources.
Success Network
Help a Colleague Succeed.
Invite a peer to get their own updated AIP-C01 prep kit.
Exam Overview
The AWS Certified Generative AI Developer - Professional certification is a pinnacle achievement for engineers specializing in cutting-edge AI. This credential validates deep expertise in designing, developing, deploying, and optimizing generative AI solutions on AWS. Earning this certification signifies a candidate's advanced ability to leverage foundational models, fine-tune them for specific use cases, and integrate them into enterprise applications with robust security and scalability. It positions professionals as leaders capable of driving innovation, accelerating product development, and solving complex business challenges using the transformative power of generative AI. This certification is crucial for those looking to distinguish themselves in the rapidly evolving field of artificial intelligence, unlocking new career opportunities and demonstrating unparalleled proficiency in AWS's generative AI ecosystem.
Questions
65
Passing Score
750/1000
Duration
170 Minutes
Difficulty
Expert
Level
Professional
Skills Measured
Career Path
Target Roles
Common Questions
Is the material up to date?
Yes. We update our question bank weekly to match the latest Amazon standards. You get free updates for 90 days.
What format do I get?
You get instant access to both the **PDF** (for reading) and our **Premium Test Engine** (for exam simulation).
Is there a guarantee?
Absolutely. If you fail the AIP-C01 exam using our materials, we offer a full money-back guarantee.
When do I get the download?
Instantly. The download link is available in your dashboard immediately after payment is confirmed.
Free Study Guide Samples
Previewing updated AIP-C01 bank (43 Questions).
A legal research company is developing an AI-powered chat assistant that uses Amazon Bedrock with a knowledge base that contains millions of legal documents. When attorneys search for legal case precedents, the initial retrieval returns many documents. The company wants the chat assistant to generate all responses within 3 seconds.
The foundation model (FM) that the chat assistant uses has a context window limitation that allows effective processing for only 10 documents for each query. Currently, the retrieval configuration fetches 50 documents by using semantic search. Attorneys report that highly relevant precedents frequently appear in positions 15-40 of the results.
The company needs a solution to improve the relevance of query results. The solution must meet the company's latency and context window constraints.
Which solution will meet these requirements?
Correct Option: B
✅ Option B (Correct) Reasoning: Reranking significantly improves retrieval relevance by re-evaluating the initially retrieved 50 documents with a more sophisticated cross-encoder model. This process ensures the top 10 most relevant documents are passed to the Foundation Model (FM), respecting its context window limitation and improving overall response quality and latency. ❌ Why the other choices are incorrect:
Option A is incorrect: The FM's context window limitation of 10 documents means feeding 50 documents will cause issues. Prompt engineering cannot overcome this hard constraint, and it will likely increase latency or lead to ineffective processing.
Option C is incorrect: Managing multiple knowledge bases is overly complex. TF-IDF is a lexical search method, less effective than semantic search for relevance, and will likely add significant latency, failing the 3-second requirement.
Option D is incorrect: A post-processing action group operates after the FM generates its response. The requirement is to improve the input to the FM. Recalculating cosine similarity on already embedded documents is redundant; a dedicated reranker is more effective and efficient for re-ranking.
Reference: https://docs.aws.amazon.com/bedrock/latest/userguide/knowledge-base-reranking.html
A company is implementing a 2-week initiative to incorporate GenAI into several hundred existing applications to provide context-driven natural language help for users. To simplify the process to choose an appropriate model for each application, a GenAI Developer is building a system to automatically compare foundation models (FMs) based on general text generation accuracy. The system runs a job that performs a series of steps.
First, the system creates a service role and attaches an IAM permissions policy that allows Amazon Bedrock to invoke the FMs and grants access to Amazon S3. Then the system requests and receives access to all the FMs that need to be tested. Then the system creates S3 buckets to store the evaluation results. Then the system creates evaluation configurations by using the TREX built-in dataset. Finally, the system specifies the Accuracy metric and Generation evaluation type in each evaluation configuration.
When the GenAI developer attempts to run the system, it fails with an AccessDenied exception. The GenAI developer must resolve the issue.
Which solution will meet this requirement?
Correct Option: A
✅ Option A (Correct) Reasoning: For Amazon Bedrock to assume an IAM service role and utilize its attached permissions, a trust policy must be defined on that role. This trust policy explicitly grants bedrock.amazonaws.com permission to assume the role. Without it, Bedrock cannot assume the role, leading to an AccessDenied exception despite correct permissions being attached to the role itself.❌ Why the other choices are incorrect:
Option B is incorrect: CORS permissions are for browser-based cross-origin requests, not for an AWS service like Amazon Bedrock assuming a role or accessing S3 directly for evaluation.
Option C is incorrect: Changing the dataset will not resolve an AccessDenied exception, as it's an issue with permissions or role assumption, not the data source itself.
Option D is incorrect: Modifying the evaluation type or metric type addresses the evaluation methodology, not the underlying AccessDenied error caused by insufficient IAM role trust. The original settings (Generation, Accuracy) are valid for text generation accuracy.
Reference: https://docs.aws.amazon.com/bedrock/latest/userguide/prereqs-iam.html#prereqs-iam-permissions
A social messaging company is building an Al chat assistant by using Amazon Bedrock. The company must ensure that every inference complies with an approved safety policy. The company wants to block harmful prompts before model invocations, filter streamed model outputs in real time, and route flagged cases for human review.
Which solution will meet these requirements?
Correct Option: A
The company requires blocking harmful prompts before model invocations, filtering streamed model outputs in real time, and routing flagged cases for human review. Option A addresses all these requirements effectively. It uses an AWS Lambda function with the ApplyGuardrail API for pre-inference input checks. It then leverages the InvokeModelWithResponseStream API with the guardrail directly attached, ensuring real-time filtering of model outputs. A second Lambda function can then process the results, specifically routing flagged items (as identified by the guardrail) to an Amazon SQS queue for human review. Crucially, it enforces guardrail use with an IAM condition (bedrock:Guardrailldentifier), which is a robust security control.
Reference: https://docs.aws.amazon.com/bedrock/latest/userguide/guardrails.html
A healthcare company is developing a clinical decision support system. The system must use generative Al (GenAI) to analyze patient information and produce recommendations. The system must integrate with existing electronic record systems by using standardized healthcare APIs.
The system must perform real-time detection of sensitive personal health information (PHI) across structured and unstructured content. The system must maintain detailed audit trails for regulatory requirements. The system must be able to scale to 5,000 concurrent requests with minimal infrastructure management.
Which solution will meet these requirements with the LEAST operational overhead?
Correct Option: D
A healthcare company needs a generative AI system with real-time PHI detection, standardized healthcare API integration, detailed audit trails, and scalability for 5,000 concurrent requests with the LEAST operational overhead.
- Option D provides a comprehensive serverless solution:
- Integration & Scalability: A fully managed prebuilt healthcare API server from AWS Marketplace running on Amazon API Gateway with AWS Lambda for API operations offers high scalability (5,000 concurrent requests) and minimal infrastructure management due to its serverless nature. This approach inherently supports standardized healthcare APIs through the Marketplace offering.
- PHI Detection: Amazon Bedrock Guardrails provides real-time PHI detection and redaction, directly integrating with generative AI workflows, which is crucial for the system's purpose.
- Audit Trails: Storing compliance events and violations in Amazon DynamoDB (a fully managed, highly scalable NoSQL database) and using AWS Glue with Amazon Athena for audit reports (both serverless analytics services) ensures detailed audit trails with low operational overhead.
- This combination of services maximizes serverless components, directly addressing the requirement for the least operational overhead.
Reference: https://aws.amazon.com/api-gateway/, https://aws.amazon.com/lambda/, https://aws.amazon.com/bedrock/guardrails/, https://aws.amazon.com/dynamodb/, https://aws.amazon.com/glue/, https://aws.amazon.com/athena/
A retail company is developing 8 conversational Al assistant that uses Amazon Bedrock foundation models (FMs). The Al assistant must handle customer product inquiries. Customers often ask about multiple products in the same conversation-
The Al assistant must maintain context about which product a customer is discussing throughout a conversation. The solution must support high concurrent user volumes with low response times. Data privacy regulations require the company to encrypt all stored customer product preferences at rest. The solution must minimize operational costs and scale automatically during peak shopping periods.
Which solution will meet these requirements?
Correct Option: B
✅ Option B (Correct)
This solution effectively addresses all requirements. An Amazon Comprehend custom entity recognizer, trained on product taxonomies, accurately extracts specific product mentions, crucial for maintaining context in multi-product inquiries. Using Amazon DynamoDB for session management provides low-latency, highly scalable, and cost-effective state persistence for high concurrent user volumes. DynamoDB inherently supports server-side encryption at rest, meeting data privacy regulations, and offers automatic scaling during peak periods. Including this rich session context in prompts to Amazon Bedrock FMs ensures the AI assistant maintains conversational flow efficiently and accurately.
❌ Why the other choices are incorrect:
- Option A is incorrect: Amazon Comprehend's built-in entity recognition might lack the specificity needed for unique product taxonomies, leading to less accurate context. While DynamoDB with TTL is good for state, a custom recognizer offers superior accuracy for the domain.
- Option C is incorrect: Using Amazon Lex to create intents for each product category adds significant complexity if the core conversational logic is handled by Bedrock FMs. Passing the entire conversation history directly to Bedrock for context can become very expensive and hit token limits quickly, failing to minimize operational costs.
- Option D is incorrect: Managing memory by including the entire conversation history in each prompt is inefficient and costly. It drastically increases token usage, making it expensive and susceptible to context window limitations, directly contradicting the requirement to minimize operational costs.
Reference: https://docs.aws.amazon.com/comprehend/latest/dg/comprehend-cer.html
A financial services company uses Amazon Bedrock to analyze customer data that is stored in an Amazon S3 bucket. The data includes personally identifiable information (PII). The company must mask PII from foundation model (FM) responses.
Which solution will meet this requirement with the LEAST operational effort?
Correct Option: A
Option A is the correct solution because Amazon Bedrock Guardrails are specifically designed to filter and mask sensitive content, including Personally Identifiable Information (PII), from both user inputs and foundation model (FM) responses. By creating a guardrail, defining PII types, and setting the action to MASK, Bedrock handles the PII masking as part of its managed service, requiring the least operational effort compared to building custom solutions or integrating multiple external services.
Reference: https://docs.aws.amazon.com/bedrock/latest/userguide/guardrails.html
A cooking spice company is launching a marketing campaign that will invite customers to upload videos of themselves cooking with the company's spices to a platform that the company operates. The company is designing a solution for the video sharing platform.
The solution must extract video transcripts and generate embeddings to help users search for videos based on spices, other ingredients, and cooking methods. The solution must integrate with the company's existing open source chat system so users can interact with videos in real time. The solution must analyze user chat text for sentiment to determine the most positively received videos. Each month, the recipe videos that received the most positive feedback and the highest number of views will be displayed on the platform.
Which combination of steps will meet these requirements with the LEAST operational overhead? (Select THREE.)
Correct Option: A,B,D
- Option A (Correct): Amazon Transcribe extracts video transcripts with minimal overhead. Amazon Comprehend performs sentiment analysis on chat feedback. Amazon Bedrock embeddings models and knowledge bases provide fully managed services for generating embeddings and enabling semantic search, significantly reducing operational burden.
- Option B (Correct): AWS Step Functions provides a serverless workflow orchestrator for the entire application pipeline, managing state and error handling. An AWS Lambda function is a cost-effective, serverless way to call the existing chat system API, ensuring low operational overhead.
- Option D (Correct): Amazon DynamoDB is a fully managed, serverless NoSQL database ideal for storing high-throughput, low-latency data like video metrics (feedback counts, view counts). Its automatic scaling and minimal administration make it an excellent choice for least operational overhead.
- Option C (Incorrect): A custom orchestration Lambda function would require significant custom code for error handling, state management, and retries, leading to higher operational overhead compared to AWS Step Functions.
- Option E (Incorrect): "Strands Agents SDK" is not a recognized AWS service. Relying on a hypothetical or third-party SDK for core functionality would likely increase operational overhead and complexity, contradicting the requirement for an AWS-centric solution with least overhead.
- Option F (Incorrect): While Amazon Aurora PostgreSQL with pgvector can store embeddings, using it for simple feedback and view counts is higher overhead than DynamoDB. DynamoDB is more suitable and cost-effective for simple key-value metrics storage with minimal operational effort.
Reference: https://aws.amazon.com/transcribe/, https://aws.amazon.com/comprehend/, https://aws.amazon.com/bedrock/, https://aws.amazon.com/step-functions/, https://aws.amazon.com/lambda/, https://aws.amazon.com/dynamodb/
A company uses an Anthropic Claude Haiku model in Amazon Bedrock to power an application that answers customer questions about the company's products. Approximately 60% of the questions that the application receives each day are very similar.
The company notices that the application cost exceeds the monthly budget by nearly 50%. Amazon CloudWatch metrics show high input and output token counts. The company needs a solution to reduce the application cost.
Which solution will meet this requirement with the LEAST deployment effort?
Correct Option: A
The core problem is high application cost due to high input/output token counts from approximately 60% similar customer questions. The company needs a solution with the LEAST deployment effort. Amazon Bedrock's native prompt caching feature is designed precisely for this scenario.
✅ Option A is correct: Amazon Bedrock offers a prompt caching feature that allows the service to cache common prompt prefixes and reuse previously generated responses up to certain 'cache checkpoints.' This significantly reduces the number of tokens sent to the model and generated, directly addressing the cost issue. Configuring this feature within Bedrock involves minimal deployment effort compared to building custom caching solutions. The concept of 'defining cache checkpoints' and controlling their 'minimum and maximum numbers' aligns with how users can manage the granularity of caching (e.g., by specifying stop sequences or token lengths) to optimize cost and latency.
❌ Option B is incorrect: While this option also refers to Bedrock's prompt caching, stating 'simplified cache management' and 'multiple cache checkpoints to provide granular control' is generally true, Option A provides a slightly more specific and actionable description of the configuration aspects ('define cache checkpoints' and 'minimum and maximum numbers') that align with Bedrock's caching mechanisms for optimizing efficiency.
❌ Option C is incorrect: Implementing a custom caching solution with Amazon ElastiCache and AWS Lambda functions involves significant deployment and operational effort, including setting up and managing an ElastiCache cluster, writing and deploying Lambda code, and integrating it into the application logic. This contradicts the requirement for the 'LEAST deployment effort.'
❌ Option D is incorrect: A custom solution using Amazon DynamoDB with vector search and two AWS Lambda functions is even more complex than option C. It requires substantial development, infrastructure setup (DynamoDB table, vector index), and management, making it the highest deployment effort among the choices.
Reference: https://aws.amazon.com/blogs/machine-learning/reduce-latency-and-cost-for-generative-ai-applications-with-prompt-caching-on-amazon-bedrock/
A media company is building an AI-powered content moderation system by using Amazon Bedrock. The system first classifies text by using a small, low-latency model. Then the system escalates requests that have a confidence score below 0.65 to a larger, more expensive model.
The system must respond in near real time for high-confidence results. The system must process low-confidence requests asynchronously. The system must scale to meet sudden spikes in demand. The company wants to optimize costs for the system by invoking the larger model only when required. The company wants to use decoupled components to achieve high resiliency for the system.
Which solution will meet these requirements?
Correct Option: C
The solution must classify text using a small, low-latency model first, and only escalate to a larger, more expensive model if the confidence score is below 0.65. High-confidence results need near real-time response, while low-confidence requests must be processed asynchronously. The system needs to scale for spikes, optimize costs, and use decoupled components for resiliency.
Option C best meets these requirements:
- Sending requests to an Amazon SQS queue and processing them with AWS Fargate provides high scalability and decoupling, handling sudden spikes.
- Invoking the small model first with Fargate, and if the confidence is high, the result can be provided. This path, while using SQS, can be optimized for near real-time processing through efficient queue polling and Fargate scaling.
- If the confidence score is below 0.65, placing the request in a second SQS queue for asynchronous processing by the large model perfectly meets the asynchronous processing, cost optimization (large model only invoked when necessary), and decoupling requirements.
Reference: https://aws.amazon.com/builders-library/designing-event-driven-systems/ https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/welcome.html https://docs.aws.amazon.com/AmazonECS/latest/developerguide/fargate.html
A company is using Amazon Bedrock to build an AI assistant to help internal teams analyze unstructured customer feedback data. The company stores the customer feedback in an Amazon S3 bucket. The S3 bucket contains more than 25 TB of historical data from mobile app reviews, chat conversations, and call center transcripts. The company expects the data source to grow by 3 GB every day. The data entries often contain multiple unrelated topics within the same input.
The company needs a solution that reliably delivers accurate answers to questions based on the data source. The solution must not export any personally identifiable information (PII) to the Amazon Bedrock model during processing or response generation.
Which solution will meet these requirements with the LEAST operational overhead?
Correct Option: C
Option C presents the solution with the LEAST operational overhead while meeting all requirements. Let's break down why:
- Amazon Bedrock Knowledge Base and AgentCore: These are fully managed services designed for building RAG-based AI assistants. They significantly reduce operational overhead compared to custom solutions involving AWS Lambda functions for data processing, chunking, embedding generation, context retrieval, and model invocation.
- Semantic Chunking: The problem states that data entries often contain multiple unrelated topics within the same input. Semantic chunking is crucial here because it intelligently groups semantically related sentences or paragraphs, even if they are not fixed in size. This ensures that the retrieved context is coherent and relevant, leading to more accurate answers. Fixed-size chunking (Option B) is less effective for this data type.
- Amazon OpenSearch Serverless: This is a fully managed, scalable, and serverless vector store solution, perfectly suited for large and growing datasets like 25+ TB with 3 GB/day growth. It offers low operational overhead compared to managing Aurora PostgreSQL (Option B) for vector search at this scale.
- Amazon Bedrock Guardrail (Input and Output): The requirement explicitly states that PII must NOT be exported to the Amazon Bedrock model during processing OR response generation. A Guardrail configured to block PII during both input and output processing ensures that PII is filtered before it reaches the foundation model as part of the prompt (including retrieved context) and also before the final response is delivered to the user. This is a managed and effective way to handle PII without custom code.
Why other options are incorrect:
- Option A is incorrect: This approach uses custom AWS Lambda functions for almost every step (PII detection, chunking, embedding, context retrieval, model invocation). This creates significant operational overhead due to the need for custom code development, deployment, and maintenance, which directly contradicts the
Reference: https://aws.amazon.com/bedrock/knowledge-bases/, https://aws.amazon.com/bedrock/agents/, https://aws.amazon.com/bedrock/guardrails/, https://docs.aws.amazon.com/bedrock/latest/userguide/kb-chunking.html, https://docs.aws.amazon.com/opensearch-service/latest/developerguide/serverless.html
A company is designing a GenAI solution to help children between the ages of 8 and 14 understand world history. The system must support concurrent use for up to 30 children in a classroom and provide responses in less than 1 second. The company is using Amazon Bedrock and Amazon Nova Pro with a knowledge base that contains history textbooks that are written for students between the ages of 6 and 21. The company uses an Amazon Bedrock flow to ensure that the solution uses the knowledge base to generate every response. The company sets the prompt response temperature to 0.7.
Early testing of the solution results in some responses that are historically inaccurate, violent, and not appropriate for children. A GenAI developer must prevent the solution from responding to prompts inaccurately and inappropriately.
Which solution will meet this requirement?
Premium Solution Locked
Unlock all 213 answers & explanations
A company is developing a customer support chat assistant that uses an Amazon Bedrock foundation model (FM). The company wants to update to a newer FM version but needs to implement a validation system to detect semantic drift in responses. The company wants to ensure that performance and functionality for end users remains consistent.
The company needs a solution to compare responses between current and new FM versions for 500 test cases. The solution must detect changes in response meaning, generate quantitative similarity scores, complete validations, and log detailed results for historical comparison.
Which solution will meet these requirements with the LEAST operational complexity?
Premium Solution Locked
Unlock all 213 answers & explanations
A company needs a system to automatically generate study materials from multiple content sources. The content sources include document files (PDF files, PowerPoint presentations, and Word documents) and multimedia files (recorded videos). The system must process more than 10,000 content sources daily with peak loads of 500 concurrent uploads. The system must also extract key concepts from document files and multimedia files and create and store contextually accurate summaries. The generated study materials must support real-time collaboration with version control. Which solution will meet these requirements?
Premium Solution Locked
Unlock all 213 answers & explanations
A GenAI developer is developing an AI agent by using the open source Strands Agents framework on AWS. The foundation models (FMs) are based on OpenAI models. After successful testing and validation, the GenAI developer wants to deploy the AI agent to the us-east-1 Region to be close to most users.
The AI agent must provide enterprise-grade security and scalability. The AI agent must also provide real-time observability and support processes that run for more than 1 hour. The GenAI developer must integrate the AI agent with the Okta identity provider (IdP). The AI agent must have memory and context awareness to handle complex interactions and learning.
Which solution will meet these requirements in the MOST operationally efficient way?
Premium Solution Locked
Unlock all 213 answers & explanations
A company is developing a generative Al (GenAl) application by using Amazon new data points daily across AWS Regions in Europe, North America, and Asia before storing the data in Amazon S3. The application must comply with local data protection and storage regulations. Data residency and processing must occur within the same continent. The application must also maintain audit trails of the application's decision-making processes and provide data classification capabilities.
Which solution will meet these requirements?
Premium Solution Locked
Unlock all 213 answers & explanations
A company needs a system to automatically generate study materials from multiple content source, e-content sources Include document files (PDF files, PowerPoint presentations, and Word documents) and multimedia files (recorded videos). The system must process more than 10,000 content sources daily with peak loads of 500 concurrent uploads. The system must also extract key concepts from document files and multimedia files and create and store contextually accurate summaries. The generated study materials must support real-time collaboration with version control.
Which solution will meet these requirements?
Premium Solution Locked
Unlock all 213 answers & explanations
A global healthcare company is deploying a GenAl application on Amazon Bedrock to produce treatment recommendations. Regulations vary for each country where the company operates. Some countries require the company to retain all model inputs and outputs for 2 years. Other countries require the company to submit data for local audits only.
Medical providers require consistent medical terminology across all locations. However, the treatment recommendations that the model produces must adapt to local patient demographics. The solution must also integrate with existing electronic health record (EHR) systems.
The application must support up to 10,000 healthcare provider queries every day with sub-second response times. The company must be able to review the application before deployments and approve of prompt changes. The application must produce comprehensive logs for prompts, responses, and user context.
Which solution will meet these requirements?
Premium Solution Locked
Unlock all 213 answers & explanations
A healthcare company is developing an application that processes sensitive patient data and generates treatment summaries by using a foundation model (FM). The application must maintain an audit trail of all prompts and completions. The application must securely handle protected health information (PHI) data throughout the processing lifecycle. The company must track all prompt-completion pairs with original patient data, but the company must redact any PHI from stored records. The company must enforce healthcare-specific data retention policies.
Which solution will meet these requirements?
Premium Solution Locked
Unlock all 213 answers & explanations
A hospital is building an Al application to help medical clinicians to make treatment decisions, The application uses Amazon Bedrock to analyze patient case histories and suggest diagnoses. The application must maintain sub-500 ms response times to integrate with the hospital's existing real-time clinical workflow- To comply with privacy regulations, the application must log all personally identifiable information (PII) handling decisions for audits. The application must detect and remove PII from responses with at least 99% accuracy.
After initial deployment, clinicians report that diagnostic summaries from the application occasionally include patient names and medical record numbers that were not present in the original case history inputs. An investigation reveals that Amazon Comprehend Medical successfully detects and removes PII from inputs with 95% accuracy, and the application replaces all detected entities with tokens before it sends inputs to Amazon Bedrock- However, the application continues to generate patient-identifying information in approximately 3-5% of outputs.
The company needs a solution to prevent the application from displaying PII in outputs while meeting all other operational requirements.
Which solution will meet these requirements?
Premium Solution Locked
Unlock all 213 answers & explanations
A healthcare company is building an AI assistant that uses Amazon Bedrock to summarize patient case notes. The AI assistant must process 20,000 case notes daily with peak loads of 100 requests every minute. The AI assistant must maintain sub-second pre-processing latency. The company must ensure that all personally identifiable information (PII) is removed from notes before any text is sent to Amazon Bedrock.
The Al assistant must be able to detect PII in both English and Spanish and prevent the foundation model (FM) from returning medical identifiers in generated summaries. The Al assistant must detect PII and provide audit visibility for all redacted fields,
Which solution will meet these requirements?
Premium Solution Locked
Unlock all 213 answers & explanations
A company wants to replace the FAQ section of its website with an Amazon Bedrock AgentCore agent, The agent has access to more than 700,000 customer inquiries from the company's online support forum. Customers add more than 1 ,500 new inquiries every day. The agent must refresh the data that it references daily'. The agent must not refer to personally identifiable information (PII) that users post online.
Which solution will meet these requirements?
Premium Solution Locked
Unlock all 213 answers & explanations
A company uses Amazon Bedrock to deploy an application that generates technical documentation for users across multiple AWS Regions and in multiple languages. Users frequently submit semantically similar questions in different languages, which results in increased inference costs and response latency- The company needs a caching solution that significantly reduces inference costs, provides Iow-latency responses globally, maintains cache freshness with a 5-minute TTL, and minimizes custom cache key generation and application-managed caching logic.
Which solution will meet these requirements?
Premium Solution Locked
Unlock all 213 answers & explanations
A healthcare company is implementing a clinical knowledge base application on Amazon Bedrock that provides medical information to doctors. During testing, a quality team discovers that the generative AI (GenAI) model occasionally fabricates medical treatment recommendations that do not originate from the approved clinical guidelines.
The quality team needs to implement a solution to detect the hallucinations before releasing the application. The solution must analyze model responses against verified medical information- The solution must identify semantic inconsistencies when users ask similar questions in different ways.
Which solution will meet these requirements?
Premium Solution Locked
Unlock all 213 answers & explanations
A company used Amazon Bedrock to build a customer support AI assistant, The Al assistant handles approximately 100 requests every second through an Amazon API Gateway API, API Gateway proxies requests to an AWS Lambda function that makes requests to an Amazon Bedrock foundation model (FM) and Amazon DynamoDB tables.
The Al assistant is becoming increasingly expensive because customers often send long conversational histories. Many messages repeat the same information or contain low-value details. Token usage has steadily risen, leading to inconsistent latency and unnecessary costs. The company must reduce input token volume without degrading answer quality and without major changes to the existing architecture.
Which solution will meet these requirements?
Premium Solution Locked
Unlock all 213 answers & explanations
A company updates an Amazon Bedrock based assistant on each development sprint, The company needs an automated deployment validation system, The system must perform prerelease validation and control releases automatically. The system must continuously monitor post-deployment. The system must include alarm capabilities and an automatic rollback functionality.
The system must replay synthetic user workflows for key intents- The system must conduct Al-specific evaluations against the production baseline. For example, the evaluations must include hallucination rate and semantic drift analysis. The system must perform automated consistency checks by using a reference prompt set.
The company will use an AWS CodePipeline pre-deploy stage that calls an AWS Step Functions workflow to orchestrate the validation checks.
Which Step Functions workflow configuration will meet these requirements?
Premium Solution Locked
Unlock all 213 answers & explanations
A healthcare company is building an Al assistant that uses Amazon Bedrock to summarize patient case notes. The Al assistant must process 20,000 case notes daily with peak loads of 100 requests every minute. The Al assistant must maintain sub-second pre-processing latency- The company must ensure that all personally identifiable information (PII) is removed from notes before any text is sent to Amazon Bedrock.
The Al assistant must be able to detect PII in both English and Spanish and prevent the foundation model (FM) from returning medical identifiers in generated summaries. The Al assistant must detect PII and provide audit visibility for all redacted fields.
Which solution will meet these requirements?
Premium Solution Locked
Unlock all 213 answers & explanations
A healthcare company uses Amazon Bedrock to deploy an application that generates summaries of clinical documents. The application experiences inconsistent response quality with occasional factual hallucinations. Monthly costs exceed the company's projections by 40%. A GenAI developer must implement a near real-time monitoring solution to detect hallucinations, identify abnormal token consumption, and provide early warnings of cost anomalies. The solution must require minimal custom development work and maintenance overhead.
Which solution will meet these requirements?
Premium Solution Locked
Unlock all 213 answers & explanations
A company is using AWS Lambda and REST APIs to build a reasoning agent to automate support workflows. The system must preserve memory across interactions, share the relevant agent state, and support event-driven invocation and synchronous invocation. The system must also enforce access control and session-based permissions.
Which combination of steps provides the MOST scalable solution? (Choose two.)
Premium Solution Locked
Unlock all 213 answers & explanations
An ecommerce company is developing a generative AI (GenAI) solution that uses Amazon Bedrock with Anthropic Claude to recommend products to customers. Customers report that some of the recommended products are not available for sale on the website or are not relevant to the customer. Customers also report that the solutions takes a long time to generate some recommendations.
The company investigates the issues and finds that most interactions between customers and the product recommendation solution are unique. The company confirms that the solutions recommends products that are not in the company's product catalog. The company must resolve these issues.
Which solution will meet this requirement?
Premium Solution Locked
Unlock all 213 answers & explanations
A company is building an AI advisory application by using Amazon Bedrock. The application will provide recommendations to customers. The company needs the application to explain its reasoning process and cite specific sources for data. The application must retrieve information from company data sources and show step-by-step reasoning for recommendations. The application must also link data claims to source documents and maintain response latency under 3 seconds.
Which solution will meet these requirements with the LEAST operational overhead?
Premium Solution Locked
Unlock all 213 answers & explanations
A media company must use Amazon Bedrock to implement a robust governance process for AI-generated content. The company needs to manage hundreds of prompt templates. Multiple teams use the templates across multiple AWS Regions to generate content. The solution must provide version control with approval workflows that include notifications for pending reviews. The solution must also provide detailed audit trails that document prompt activities and consistent prompt parameterization to enforce quality standards.
Which solution will meet these requirements?
Premium Solution Locked
Unlock all 213 answers & explanations
A company uses an organization in AWS Organizations with all features enabled to manage multiple AWS accounts. Employees use Amazon Bedrock across multiple accounts. The company must prevent specific topics and proprietary information from being included in prompts to Amazon Bedrock models. The company must ensure that employees can use only approved Amazon Bedrock models. The company centrally manages IAM roles for employees.
Which combination of solutions will meet these requirements? (Choose two.)
Premium Solution Locked
Unlock all 213 answers & explanations
An insurance company uses existing Amazon SageMaker AI infrastructure to support a web-based application that allows customers to predict what their insurance premiums will be. The company stores customer data that is used to train the SageMaker AI model in an Amazon S3 bucket. The dataset is growing rapidly. The company wants a solution to continuously re-train the model. The solution must automatically re-train and re-deploy the model to the application when an employee uploads a new customer data file to the S3 bucket.
Which solution will meet these requirements?
Premium Solution Locked
Unlock all 213 answers & explanations
A GenAI developer is building a Retrieval Augmented Generation (RAG)-based customer support application that uses Amazon Bedrock foundation models (FMs). The application needs to process 50 GB of historical customer conversations that are stored in an Amazon S3 bucket as JSON files. The application must use the processed data as its retrieval corpus. The application's data processing workflow must extract relevant data from customer support documents, remove customer personally identifiable information (PII), and generate embeddings for vector storage. The processing workflow must be cost-effective and must finish within 4 hours.
Which solution will meet these requirements with the LEAST operational overhead?
Premium Solution Locked
Unlock all 213 answers & explanations
A financial services company is creating a Retrieval Augmented Generation (RAG) application that uses Amazon Bedrock to generate summaries of market activities. The application relies on a vector database that stores a small proprietary dataset that has a low index count. The application must perform similarity searches. The Amazon Bedrock model's responses must maximize accuracy and maintain high performance.
The company needs to configure the vector database and integrate it with the application.
Which solution will meet these requirements?
Premium Solution Locked
Unlock all 213 answers & explanations
A company uses Amazon Bedrock to build a Retrieval Augmented Generation (RAG) system. The RAG system uses an Amazon Bedrock knowledge base that is based on an Amazon S3 bucket as the data source for emergency news video content. The system retrieves transcripts, archived reports, and related documents from the S3 bucket.
The RAG system uses state-of-the-art embedding models and a high-performing retrieval setup. However, users report slow responses and irrelevant results, which cause decreased user satisfaction. The company notices that vector searches are evaluating too many documents across too many content types and over long periods of time.
The company determines that the underlying models will not benefit from additional fine tuning. The company must improve retrieval accuracy by applying smarter constraints. The company wants a solution that requires minimal changes to the existing architecture.
Which solution will meet these requirements?
Premium Solution Locked
Unlock all 213 answers & explanations
An enterprise application uses an Amazon Bedrock foundation model (FM) to process and analyze 50 to 200 pages of technical documents. Users are experiencing inconsistent responses and receiving truncated outputs when processing documents that exceed the FM's context window limits.
Which solution will resolve this problem?
Premium Solution Locked
Unlock all 213 answers & explanations
A financial services company needs to build a document analysis system that uses Amazon Bedrock to process quarterly reports. The system must analyze financial data, perform sentiment analysis, and validate compliance across batches of reports. Each batch contains 5 reports. Each report requires multiple foundation model (FM) calls. The solution must finish the analysis within 10 seconds for each batch. Current sequential processing takes 45 seconds for each batch.
Which solution will meet these requirements?
Premium Solution Locked
Unlock all 213 answers & explanations
A company is building a generative AI (GenAI) application that produces content based on a variety of internal and external data sources. The company wants to ensure that the generated output is fully traceable. The application must support data source registration and enable metadata tagging to attribute content to its original source. The application must also maintain audit logs of data access and usage throughout the pipeline.
Which solution will meet these requirements?
Premium Solution Locked
Unlock all 213 answers & explanations
Company configures a landing zone in AWS Control Tower. The company handles sensitive data that must remain within the European Union. The company must use only the eu-central-1 Region. The company uses SCPs to enforce data residency policies. GenAI developers at the company are assigned IAM roles that have full permissions for Amazon Bedrock.
The company must ensure that GenAI developers can use the Amazon Nova Pro model through Amazon Bedrock only by using cross-Region inference (CRI) and only in eu-central-1. The company enables model access for the GenAI developer IAM roles in Amazon Bedrock. However, when a GenAI developer attempts to invoke the model through the Amazon Bedrock Chat/Text playground, the GenAI developer receives the following error.
User: arn:aws:sts::123456789012:assumed-role/AssumedDevRole/DevUserName
Action: bedrock:InvokeModelWithResponseStream
On resource(s): arn:aws:bedrock:eu-west-3::foundation-model/amazon.nova-pro-v1:0
Context: a service control policy explicitly denies the action
The company needs a solution to resolve the error. The solution must retain the company's existing governance controls and must provide precise access control. The solution must comply with the company's existing data residency policies.
Which combination of solutions will meet these requirements? (Choose two.)
Premium Solution Locked
Unlock all 213 answers & explanations
A company is designing an API for a generative AI (GenAI) application that uses a foundation model (FM) that is hosted on a managed model service. The API must stream responses to reduce latency, enforce token limits to manage compute resource usage, and implement retry logic to handle model timeouts and partial responses.
Which solution will meet these requirements with the LEAST operational overhead?
Premium Solution Locked
Unlock all 213 answers & explanations
A social media company deploys an Amazon Bedrock application that generates article summaries for journalists. The application processes thousands of requests daily across multiple foundation models (FMs).
Costs for the application increase 40% over two weeks. The company needs a solution to identify which FMs, users, or usage patterns are driving the cost increase. The solution must track token usage for each FM, detect unusual consumption patterns, and alert the company when costs exceed set thresholds.
Which solution will meet these requirements?
Premium Solution Locked
Unlock all 213 answers & explanations
A company is developing a new AI-powered application that needs to integrate with various specialized tools. These tools currently run as Model Context Protocol (MCP) servers on the local machines of developers and do not maintain states between invocations. The company plans to deploy each MCP server as an AWS Lambda function to support the company's production application.
The solution must be accessible to both internal applications and authorized third-party partners. The solution must use strict authentication and authorization controls.
Which additional steps will meet these requirements with the LEAST operational overhead?
Premium Solution Locked
Unlock all 213 answers & explanations
Full Question Bank Locked
You have reached the end of the free study guide preview. Upgrade now to unlock all 213 questions and the full simulation engine.
Certification Path
Related Certifications
Customer Reviews
Global Community Feedback
David M.
"The practice engine is incredible. It feels exactly like the real testing environment and helped me build so much confidence."
Sarah J.
"The PDF is very well organized and the explanations for the answers are actually helpful, not just random text."
Michael C.
"I was skeptical, but the content is high quality and definitely worth the price. I passed on my first try!"