Practical AI Use Cases and the AWS AI Service Catalog (AIF-C01)
AI and machine learning add the most value when a problem involves predicting an outcome or finding patterns in large amounts of data, where writing exact rules by hand would be impractical. This lesson covers Task 1.2 of the AIF-C01 exam: where AI/ML provides value (assisting human decisions, adding scalability, and enabling automation), when it is the wrong tool (when you need a guaranteed exact answer rather than a probabilistic prediction, or when the cost outweighs the benefit), how to pick a technique by problem type (regression, classification, or clustering), and which AWS managed services fit common jobs. You will also learn to choose between a traditional ML model and a foundation model based on explainability, regulatory, and operational needs. The exam rewards you for recognizing services by purpose, so "convert speech to text" should immediately bring the right service to mind.
On this page8 sections
- Where AI and ML Add Value
- When AI/ML Is NOT the Right Tool
- Choosing a Technique: Regression, Classification, Clustering
- Real-World AI Applications
- The AWS Managed AI Service Catalog
- Amazon SageMaker AI: When You Build Your Own
- Traditional ML versus Foundation Models
- Scenario: An Insurance Company Chooses Its Tools
- Recognize where AI/ML adds value: assisting human decisions, enabling scalability, and automating repetitive tasks.
- Identify when AI/ML is not appropriate, especially when a guaranteed exact outcome is needed instead of a prediction.
- Select the right technique by problem type: regression for continuous values, classification for categories, clustering for grouping.
- Match real-world applications such as fraud detection, forecasting, and recommendations to the AI capability behind them.
- Identify the purpose of the core AWS managed AI services, including SageMaker AI, Transcribe, Translate, Comprehend, Lex, and Polly.
- Decide when a traditional ML model beats a foundation model based on explainability, regulation, and operational constraints.
Where AI and ML Add Value
AI and ML earn their keep in three broad situations that the exam names directly. The first is assisting human decision making: rather than replacing an expert, the model surfaces a prediction or ranking that a person then acts on, such as flagging the transactions most likely to be fraudulent so an analyst reviews those first. The second is scalability: a model can evaluate millions of items consistently and instantly in a way no human team could match, for example screening every product review or every login attempt as it happens. The third is automation: tasks that are repetitive and pattern-based, like sorting support tickets by topic or transcribing thousands of calls, can run without a person in the loop.
Underlying all three is a common signal: the problem involves recognizing patterns or predicting outcomes from data that is too large, too fast, or too nuanced for hand-written rules. If a task requires judgment based on many subtle examples, changes over time, or must operate at a volume beyond human capacity, it is a strong AI/ML candidate. On the exam, phrases like "analyze at scale," "detect patterns humans would miss," "personalize for each user," or "reduce manual effort" all point toward an AI/ML solution being appropriate.
When AI/ML Is NOT the Right Tool
Knowing when to say no is one of the most frequently tested points in this task. The headline rule: AI/ML produces probabilistic predictions, not guaranteed answers, so it is the wrong choice when a problem demands a specific, exact, deterministic outcome every time. If a task can be solved with a clear, fixed rule and must be exactly right, use conventional programming, not machine learning. Calculating sales tax, applying a documented refund policy, or summing a column of numbers all have one correct answer defined by a rule; wrapping them in an ML model would only add uncertainty. A model that is right ninety-nine percent of the time is unacceptable when the requirement is one hundred percent correctness.
The second reason to decline is a poor cost-benefit balance. Machine learning needs quality data, skilled effort, and ongoing operation, so if the problem is small, rarely occurs, or a simple rule already works well, the expense of building and maintaining a model is not justified. A related blocker is lack of sufficient, relevant data: without enough representative examples, a model cannot learn reliably. On the exam, watch for wording like "needs a guaranteed exact answer," "outcome must be exactly correct," or "a simple deterministic rule already solves it" as signals that AI/ML is not appropriate.
Choosing a Technique: Regression, Classification, Clustering
When AI/ML does fit, the exam expects you to pick the technique that matches the problem type. The choice hinges on what you are trying to produce. Regression predicts a continuous numeric value, such as a price, a temperature, or an expected demand. Classification predicts a category or class from a fixed set of options, such as spam versus not-spam or which of five product types an image shows; both regression and classification are supervised techniques that need labeled data. Clustering is an unsupervised technique that groups similar items together when you have no labels and want to discover natural segments, such as grouping customers by behavior.
| You want to | Technique | Learning type | Example |
|---|---|---|---|
| Predict a number on a continuous scale | Regression | Supervised | Estimate a house price or next month's sales |
| Assign an item to a known category | Classification | Supervised | Label an email spam or not-spam |
| Group similar items with no labels | Clustering | Unsupervised | Segment customers by purchasing behavior |
The fastest exam heuristic: a number as the answer means regression, a labeled bucket means classification, and grouping without predefined labels means clustering.
Real-World AI Applications
The exam lists concrete application areas, and recognizing each by its description is enough. Computer vision interprets images and video, powering quality inspection, medical image analysis, and face or object detection. Natural language processing (NLP) works with written language for sentiment analysis, entity extraction, and document classification. Speech recognition converts spoken audio into text, enabling call transcription and voice interfaces. Recommendation systems suggest products, content, or connections based on a user's behavior and similar users, and are what drive "customers also bought" features.
Fraud detection spots unusual or suspicious activity by learning what normal transactions look like and flagging the anomalies. Forecasting predicts future values from historical time-series data, such as future demand, staffing needs, or energy usage. Knowledge bases and intelligent search let users ask natural-language questions and get answers pulled from a body of documents, rather than scrolling through keyword results. Agentic AI extends generative AI so a system can plan and carry out multi-step tasks using tools, for example gathering information and completing an action on a user's behalf. On the exam these applications are usually the answer to "which use case fits," so tie each phrase to its capability: images to computer vision, audio to speech recognition, suggestions to recommendation systems, and anomalies to fraud detection.
The AWS Managed AI Service Catalog
AWS offers pre-trained, managed AI services so you can add a capability with an API call instead of building and training a model yourself. Task 1.2 focuses on knowing each service by its purpose. Amazon Comprehend is the NLP service: it extracts sentiment, entities, key phrases, language, and personally identifiable information from text. Amazon Transcribe converts speech to text, and Amazon Polly does the reverse, converting text to lifelike speech. Amazon Translate performs language translation between many languages. Amazon Lex builds conversational interfaces and chatbots, using speech recognition and language understanding, and it is the technology behind Amazon Alexa.
| Service | What it does | Trigger phrase |
|---|---|---|
| Amazon Transcribe | Speech to text | "convert audio or calls to text" |
| Amazon Polly | Text to speech | "read text aloud in a natural voice" |
| Amazon Translate | Language translation | "translate content between languages" |
| Amazon Comprehend | NLP: sentiment, entities, key phrases | "analyze sentiment or extract entities" |
| Amazon Lex | Chatbots and conversational interfaces | "build a chatbot or voice assistant" |
| Amazon Rekognition | Image and video analysis (computer vision) | "detect objects or faces in images" |
| Amazon Textract | Extract text and data from documents | "pull data from scanned forms" |
| Amazon Kendra | Intelligent enterprise search / knowledge base | "natural-language search over documents" |
| Amazon Personalize | Real-time recommendations | "personalized product recommendations" |
| Amazon Forecast | Time-series forecasting | "predict future demand from history" |
Match the verb in the question to the service: the six the exam names most often are Comprehend, Transcribe, Translate, Polly, Lex, and SageMaker AI.
Amazon SageMaker AI: When You Build Your Own
The pre-trained services above solve common, well-defined problems out of the box, but sometimes your problem is specific to your business, such as predicting churn from your own customer data or detecting defects unique to your product. That is where Amazon SageMaker AI fits. SageMaker AI is the fully managed service for the whole custom machine-learning workflow: you use it to build, train, and deploy your own models, with the infrastructure managed for you.
The distinction the exam draws is level of control versus effort. Managed AI services like Comprehend or Rekognition require no ML expertise and no training data of your own; you send a request and get a result, but you cannot change what the model does. SageMaker AI gives you full control to create a model tailored to your data and problem, at the cost of needing data and more skill. A simple decision rule: if a ready-made service already does the task, such as transcription or translation, use it; if you need a custom model trained on your own data, use SageMaker AI. Note that building the model pipeline in detail, along with MLOps and monitoring, belongs to Task 1.3, so here you only need to know what SageMaker AI is for.
Traditional ML versus Foundation Models
A newer Task 1.2 objective asks when a traditional ML model is a better fit than a foundation model (FM). Foundation models are large, general-purpose models (the basis of generative AI) that are powerful and flexible but also large, costly to run, and hard to fully explain. Traditional ML models, such as a regression or decision-tree model trained on your tabular data, are smaller, cheaper, and often far easier to interpret. The right choice depends on constraints, not on which is more advanced.
| Constraint | Favors | Why |
|---|---|---|
| Explainability required | Traditional ML | Simpler models are easier to interpret and justify |
| Strict regulation (credit, healthcare) | Traditional ML | Auditable, transparent decisions are easier to defend |
| Tight cost or latency limits | Traditional ML | Smaller models are cheaper and faster to run |
| Generating text, images, or code | Foundation model | Only generative models create new content |
| Broad, flexible language tasks | Foundation model | FMs generalize across many tasks with little tuning |
The exam's favorite trap is assuming the biggest, newest model is always best. When a question stresses that decisions must be explainable, must satisfy regulators, or must run cheaply and predictably, a simpler traditional ML model usually wins. Reserve foundation models for open-ended generation and broad language understanding, which is where their flexibility justifies their cost.
Scenario: An Insurance Company Chooses Its Tools
Consider an insurer modernizing its operations, where each need maps to a different Task 1.2 answer. To decide which claims to pay automatically and which to route to a human, it must be able to explain and defend every decision to regulators, so it chooses a traditional ML classification model over a foundation model, and it keeps a person in the loop for borderline cases, an example of AI assisting human decision making. To estimate a fair premium, a continuous dollar amount, it uses regression. To predict next quarter's claim volume from years of history, it uses forecasting on time-series data.
For its contact center, the insurer converts recorded calls to text with Amazon Transcribe, gauges customer sentiment and pulls out key details with Amazon Comprehend, and answers common questions through a chatbot built on Amazon Lex. It reads data from scanned claim forms with Amazon Textract. When it wants to segment customers into groups with no predefined labels, it uses clustering. Finally, it decides not to use AI to calculate policy renewal dates, because that is a fixed, exact rule with one correct answer and needs no prediction. One company, and every core Task 1.2 judgment: value, non-value, technique choice, service choice, and model choice.
Tip. Task 1.2 questions are scenario-driven and ask you to choose the right tool or judge whether AI even fits. The single most tested idea is recognizing when AI/ML is not appropriate: "needs a guaranteed exact answer" or "a fixed rule with one correct result" signals conventional programming, not machine learning. Expect technique-selection questions where "predict a continuous value" points to regression, "assign a known category" points to classification, and "group similar items with no labels" points to clustering. Service questions map a verb to a service: "convert speech to text" is Transcribe, "text to speech" is Polly, "translate languages" is Translate, "analyze sentiment" is Comprehend, "build a chatbot" is Lex, and "build a custom model" is SageMaker AI. Finally, when a question stresses explainability or regulation, a traditional ML model usually beats a foundation model.
- AI/ML adds value when a task needs prediction or pattern-finding at scale, assists human decisions, or automates repetitive work.
- AI/ML is the wrong tool when a guaranteed exact answer is required rather than a probabilistic prediction, or when a simple rule already works.
- Regression predicts continuous numbers, classification assigns known categories, and clustering groups unlabeled items.
- Match the verb to the service: speech to text is Transcribe, text to speech is Polly, translation is Translate, NLP and sentiment is Comprehend, chatbots are Lex.
- Use pre-trained managed services for common tasks; use SageMaker AI to build, train, and deploy a custom model on your own data.
- Choose traditional ML over a foundation model when explainability, regulation, or tight cost and latency constraints dominate.
- Choose a foundation model when the task is generating content or broad, flexible language understanding.
- Real-world mapping: images to computer vision, audio to speech recognition, suggestions to recommendation systems, anomalies to fraud detection.
Frequently asked questions
When is AI or machine learning not the right solution?
AI/ML is not appropriate when a problem requires a guaranteed, exact, deterministic outcome rather than a probabilistic prediction. Machine learning gives you a best estimate, not a certainty, so tasks with one correct answer defined by a clear rule, such as calculating tax or applying a documented policy, should use conventional programming instead. It is also the wrong choice when the cost of building and maintaining a model outweighs the benefit, or when there is not enough relevant, quality data for a model to learn from. On the exam, wording like "needs an exactly correct result every time" signals that AI/ML does not fit.
What is the difference between regression, classification, and clustering?
All three are machine-learning techniques chosen by what you want to predict. Regression predicts a continuous numeric value, such as a price or a temperature. Classification predicts a category from a fixed set, such as spam or not-spam; both regression and classification are supervised and need labeled data. Clustering is unsupervised and groups similar items together when you have no labels and want to discover natural segments, such as grouping customers by behavior. The shortcut: a number means regression, a known bucket means classification, and grouping without labels means clustering.
Which AWS service converts speech to text?
Amazon Transcribe converts speech to text, using automatic speech recognition to turn recorded or streaming audio, such as customer calls or meetings, into a written transcript. Its counterpart is Amazon Polly, which does the reverse by converting text into lifelike speech. For working with the resulting text, such as detecting sentiment or extracting entities, you would use Amazon Comprehend, and for translating it into another language you would use Amazon Translate. On the exam, "convert speech to text" maps to Transcribe and "read text aloud" maps to Polly.
What is Amazon SageMaker AI used for?
Amazon SageMaker AI is the fully managed AWS service for building, training, and deploying your own custom machine-learning models. You use it when a ready-made managed service does not fit your problem and you need a model trained on your own data, for example predicting churn from your customer records. It contrasts with pre-trained services like Amazon Comprehend or Amazon Rekognition, which require no ML expertise but cannot be tailored. The rule of thumb: use a managed service when one already solves the task, and use SageMaker AI when you need a custom model.
When should you use a traditional ML model instead of a foundation model?
Choose a traditional ML model when explainability, regulation, or tight cost and latency constraints matter more than flexibility. Traditional models, such as a regression or decision-tree model on tabular data, are smaller, cheaper, faster, and easier to interpret, which makes them well suited to regulated decisions in areas like lending or healthcare where you must justify every outcome. Reserve foundation models for open-ended tasks like generating text, images, or code, or broad language understanding, where their flexibility justifies the higher cost. The bigger, newer model is not automatically the right one.
What are common real-world use cases for AI and machine learning?
Common applications include computer vision for interpreting images and video, natural language processing for understanding text, speech recognition for converting audio to text, and recommendation systems for suggesting products or content. Others are fraud detection for spotting suspicious activity, forecasting for predicting future values from historical time-series data, knowledge bases and intelligent search for answering natural-language questions from documents, and agentic AI for planning and carrying out multi-step tasks. On the exam, each phrase maps to a capability, so tie images to computer vision, audio to speech recognition, and anomalies to fraud detection.
Sign up free to mark lessons complete, bookmark topics and track your exam readiness.