amazon q · 2026 complete guide

Amazon Q — the complete 2026 guide.

Amazon Q is AWS's family of generative-AI assistants. It splits into two distinct products that share a name and almost nothing else: Q Developer, an AI coding assistant for engineers, and Q Business, an enterprise assistant that answers questions over your company's own data. This guide disambiguates the two, maps every surface Q runs in, lays out pricing for both, and benchmarks Q against GitHub Copilot, ChatGPT Enterprise, and Microsoft 365 Copilot.

products under "Q"
2
Q Developer Pro
$19/user/mo
Q Business Pro
$20/user/mo
free tier
yes (both)
TL;DR
  • Amazon Q is two products, not one. Q Developer is an AI coding assistant that lives in your IDE, CLI, and the AWS console. Q Business is a retrieval-augmented (RAG) assistant that connects to your company data — SharePoint, Salesforce, S3, Confluence, ~40+ connectors — and answers employee questions with citations. They share a brand and a security posture, not a use case.
  • Pricing is per-seat with a free tier on both. Q Developer: Free vs Pro at $19/user/month. Q Business: Lite at $3/user/month vs Pro at $20/user/month. Q Business also bills separately for the index that stores your data. Always confirm current rates on the AWS pricing page.
  • Your data is not used to train Amazon's foundation models, and Q Business answers strictly within each user's existing document permissions. That data-handling posture — plus tight AWS-console and IAM Identity Center integration — is the main reason AWS-centric teams pick Q over GitHub Copilot or ChatGPT Enterprise.
definition

IWhat Amazon Q is — and why the single name is misleading

Amazon Q is AWS's brand for generative-AI assistants. The name covers two products with different buyers, different surfaces, and different pricing — which is the single most common source of confusion about Q.

Amazon Q launched in late 2023 and reached general availability through 2024. AWS positions it as "the most capable generative-AI assistant for accelerating software development and leveraging your enterprise data." That one sentence already contains both products: "accelerating software development" is Amazon Q Developer, and "leveraging your enterprise data" is Amazon Q Business.

Under the hood, Amazon Q is built on Amazon Bedrock — AWS's managed foundation-model service — so it inherits Bedrock's security and data-handling guarantees. You do not pick the underlying model the way you do when you call Bedrock directly; AWS manages model selection and routing inside Q. What you choose is which product you are buying and which tier.

The practical takeaway: when someone says "we're looking at Amazon Q," the first question is always "Developer or Business?" An engineering leader evaluating an AI pair-programmer wants Q Developer. A CIO who wants employees to ask "what's our refund policy?" and get a cited answer from internal docs wants Q Business. Conflating them leads to the wrong pilot, the wrong budget line, and the wrong success metric.

There is also a layer of Q embedded inside other AWS services — QuickSight, Connect, and others — where "Q" appears as a capability rather than a standalone product you license per seat. We map all of these surfaces in section IV so the full footprint is clear.

one-line disambiguation

Q Developer = AI coding assistant for engineers (IDE, CLI, console). Q Business = enterprise assistant that answers questions over your own data (RAG, ~40+ connectors). Same brand, same Bedrock-backed security posture, completely different jobs.

the split

IIQ Developer vs Q Business, clearly separated

These are the two products you actually license. Read this section once and the rest of the Amazon Q landscape falls into place.

The two products diverge on almost every axis: who the buyer is, where it runs, what "good" looks like, and how it's priced. The only things they share are the brand "Amazon Q," the Bedrock foundation underneath, and the enterprise data-handling guarantees (your data is not used to train the base models).

Amazon Q Developer — the AI coding assistant

Buyer: engineering leaders, platform teams, individual developers.

Where it runs: inside the IDE (VS Code, JetBrains IDEs, Visual Studio, Eclipse), the command line, and the AWS Management Console as an inline help and troubleshooting agent.

What it does: inline code completion across 15+ languages, a chat panel for "how do I…" questions, agents that can implement a multi-file feature from a prompt (/dev), generate unit tests and documentation, run guided code transformations and language/framework upgrades (/transform), and scan code for security vulnerabilities. It is AWS-aware — it can answer questions about your AWS account and reason about your architecture.

Success metric: accepted-suggestion rate, time-to-merge, reduction in boilerplate and upgrade toil.

For full feature depth, IDE setup, and the per-tier breakdown, see the dedicated Amazon Q Developer guide.

Amazon Q Business — the enterprise RAG assistant

Buyer: CIOs, IT, knowledge-management and internal-operations teams.

Where it runs: a web experience your employees log into (often via single sign-on), an embeddable chat widget, browser extensions, and a Slack/Teams integration. It is not an IDE tool.

What it does: connects to your enterprise content — Microsoft SharePoint, OneDrive, Salesforce, ServiceNow, Confluence, Jira, Google Drive, Amazon S3, and roughly forty-plus other sources — indexes it, and answers natural-language questions with citations back to the source document. It respects each user's existing permissions, so an employee only ever gets answers from documents they were already allowed to read. It can also summarize, draft, and (with Q Apps) let employees build small no-code internal apps on top of that data.

Success metric: deflected internal support tickets, time-to-answer for employees, adoption across departments.

For connector lists, the index sizing model, permission handling, and admin setup, see the dedicated Amazon Q Business guide.

amazon q developer vs amazon q business · 2026
DimensionQ DeveloperQ Business
Primary jobWrite, fix, test & upgrade codeAnswer questions over your company data
BuyerEngineering / platform teamsCIO / IT / knowledge management
SurfacesIDE, CLI, AWS consoleWeb app, Slack/Teams, embedded widget
Data sourceYour codebase + AWS account~40+ enterprise connectors (RAG)
Pricing tiersFree / Pro ($19/user/mo)Lite ($3) / Pro ($20) + index cost
Closest competitorGitHub Copilot, CursorMicrosoft 365 Copilot, Glean, ChatGPT Enterprise
Trains base model on your data?NoNo
If you only remember one table on this page, remember this one. Almost every Amazon Q question resolves once you know which column you're in.
under the hood

IIIHow Amazon Q actually works

Both products are thin, opinionated layers over Amazon Bedrock plus AWS's identity and data plumbing. Understanding the architecture explains both the security story and the pricing model.

Foundation models via Bedrock. Amazon Q does not ship its own model that you tune. It calls foundation models hosted on Amazon Bedrock and manages model selection for you. Because the inference runs inside AWS's managed environment, prompts and responses are not used to train the underlying base models, and data stays within AWS's security boundary. This is the same guarantee that makes Bedrock attractive to regulated buyers, inherited by Q.

Identity through IAM Identity Center. Q Business (and Q Developer Pro at the organization level) authenticate users through AWS IAM Identity Center, which can federate to your existing identity provider — Okta, Microsoft Entra ID (formerly Azure AD), Ping, and others. This is what lets Q Business enforce per-user document permissions: it knows who the asker is and only retrieves content that identity is entitled to see.

Retrieval-augmented generation (RAG) for Q Business. Q Business ingests your documents into a managed index (essentially a vector + keyword store). At query time it retrieves the most relevant passages, hands them to the model as context, and the model answers using that grounding — citing the documents it drew from. This is why Q Business can answer questions about your policies and data without that data ever being baked into a model. If you want to build comparable retrieval on raw infrastructure instead of buying the packaged product, that is the domain of Bedrock Knowledge Bases and RAG on AWS.

Agents and tools. Both products go beyond chat. Q Developer's agents can plan and execute multi-step coding tasks (implement a feature, transform a codebase). Q Business can take actions in connected systems (e.g., create a Jira ticket) through plugins. These agentic capabilities are what separate Q from a simple chatbot wrapper.

why this matters for procurement

Because Q is built on Bedrock and IAM Identity Center, security and identity teams can reason about it using controls they already own — VPC boundaries, IAM, CloudTrail logging, data-residency by region. That “it’s already inside our AWS account” property is frequently the deciding factor against an external SaaS assistant.

surfaces

IVEverywhere Amazon Q shows up

Beyond the two licensed products, "Q" appears as an embedded capability across the AWS portfolio. Here is the full footprint so nothing surprises you.

The pattern: Q Developer is the assistant wherever engineers work (IDE, CLI, console, dev-focused chat), while Q Business is the assistant wherever knowledge workers ask questions of company data (web app, intranet widget, Slack/Teams). The embedded flavors inside QuickSight and Connect are bundled into those services' own pricing rather than the standalone Q SKUs.

  • IDEs (Q Developer) — VS Code, JetBrains (IntelliJ, PyCharm, WebStorm, etc.), Visual Studio, and Eclipse — inline completion plus a chat sidebar.
  • Command line (Q Developer) — A CLI agent that completes commands, explains errors, and can translate natural language into shell commands; available on macOS and Linux.
  • AWS Management Console (Q Developer) — An always-available assistant in the console that answers AWS questions, helps diagnose errors, and guides you to the right service and configuration.
  • Amazon QuickSight (Q in QuickSight) — Natural-language BI — ask questions of your dashboards in plain English and generate visualizations and executive summaries.
  • Amazon Connect (Q in Connect) — Real-time agent assistance in the contact center — suggested responses and answers drawn from your knowledge base while an agent is on a call or chat.
  • AWS Chatbot / Slack & Teams (Q Developer in chat) — Ask Q about your AWS resources and operational state directly from Slack or Microsoft Teams channels.
  • Q Business web app, widget & browser extension — The primary Q Business surface: a standalone web experience, an embeddable widget for your intranet, and browser extensions for in-context answers.
  • Amazon Q Apps (inside Q Business) — A no-code builder that turns a prompt into a shareable internal mini-app backed by your indexed company data.
pricing

VAmazon Q pricing for both products

Both products are per-seat with a free entry point. The figures below are representative as of 2026 — always confirm current rates on the AWS pricing page, since AWS adjusts tiers periodically.

Amazon Q Developer uses a simple two-tier model. The Free tier gives individual developers inline code suggestions, chat, and a capped number of agent interactions and security scans per month at no cost. The Pro tier is roughly $19 per user per month and adds higher limits, organization-wide license management through IAM Identity Center, policy controls, and higher caps on the agentic features (/dev, /transform) and security scanning. Some advanced agent actions (for example large-scale code transformations) can carry additional usage-based charges beyond the seat fee.

Amazon Q Business has two seat tiers plus an index cost. Q Business Lite is about $3 per user per month and is intended for lighter, mostly read/ask usage. Q Business Pro is about $20 per user per month and unlocks the full feature set including Q Apps and richer plugin actions. Separately, you pay for the index that stores and serves your data — billed by capacity units sized to how many documents and how much query throughput you need. So a Q Business bill = (seats × tier price) + (index capacity).

The index cost is the line item teams most often forget when modeling Q Business. For a small deployment it is modest; for an enterprise indexing millions of documents it becomes a meaningful share of the total. Size the index to real document volume rather than over-provisioning on day one.

amazon q pricing snapshot · representative, 2026 — confirm on aws pricing page
ProductTierApprox. priceWhat you get
Q DeveloperFree$0Inline completion, chat, capped agent runs & security scans
Q DeveloperPro~$19 / user / moHigher limits, org license mgmt, policy controls, more agent + scan capacity
Q BusinessLite~$3 / user / moAsk/answer over connected data, lighter usage
Q BusinessPro~$20 / user / moFull feature set incl. Q Apps & richer plugin actions
Q BusinessIndexusage-basedStorage + query capacity for your indexed documents (billed separately)
Prices are representative as of 2026 and may change. Q Business total = seats × tier + index capacity. Heavy agentic actions in Q Developer may add usage charges on top of the Pro seat.
how it compares

VIAmazon Q vs GitHub Copilot, ChatGPT Enterprise & Microsoft 365 Copilot

Because Q spans two product categories, it competes in two different markets at once. Here is the high-level read; the dedicated comparison page goes deeper on the coding head-to-head.

For coding — Q Developer vs GitHub Copilot (and Cursor). GitHub Copilot is the market-leading AI pair-programmer, deeply tied to GitHub and now multi-model. Q Developer's differentiators are its AWS awareness (it reasons about your AWS account and architecture), its agentic upgrades via /transform (e.g. Java version migrations), and its presence in the AWS console and CLI. If your stack is AWS-heavy and you value managed code transformations, Q Developer is compelling; if your team lives in GitHub and wants the broadest IDE ecosystem and model choice, Copilot is the default. The detailed breakdown lives in Amazon Q vs GitHub Copilot.

For enterprise knowledge — Q Business vs Microsoft 365 Copilot, ChatGPT Enterprise & Glean. Microsoft 365 Copilot is the natural choice for organizations standardized on Microsoft 365 (it is grounded in the Microsoft Graph — your Outlook, Teams, SharePoint). ChatGPT Enterprise is a general-purpose assistant with optional connectors and strong raw model quality. Glean is a dedicated enterprise-search-and-assistant specialist. Q Business's edge is for organizations whose data and security perimeter already live in AWS, and who want answers grounded in a broad set of connectors with per-user permission enforcement, billed and governed inside their AWS account.

The honest summary: Amazon Q is rarely the obvious pick on raw model quality alone. It wins on integration and governance — when "it runs inside our AWS account, under our IAM, in our region, without our data training someone’s model" is the requirement that matters most.

security & data

VIISecurity, data handling & compliance

For most buyers this section is the decision. Q inherits Bedrock's data posture and AWS's identity and governance controls.

The net effect for a security review: Amazon Q can largely be evaluated with the same controls and assurances a team already applies to the rest of its AWS estate. That continuity — rather than onboarding a brand-new external processor — is a recurring reason regulated and enterprise buyers shortlist Q.

  • Your data does not train base models — Content you send to Amazon Q (prompts, code, indexed documents) is not used to train the underlying foundation models. This holds across both products.
  • Per-user permission enforcement (Q Business) — Q Business respects the access controls of each connected source. A user only receives answers grounded in documents they already have permission to read — answers cannot leak content across permission boundaries.
  • Identity via IAM Identity Center — Authentication federates to your existing IdP (Okta, Microsoft Entra ID, Ping, etc.). Q does not introduce a separate, ungoverned identity store.
  • Data residency by region — Q runs in specific AWS regions, so you can keep processing within a chosen geography to support residency requirements.
  • Auditability & governance — Administrative controls let you manage which features, plugins, and connectors are enabled; activity integrates with AWS logging so security teams can review usage.
  • Compliance alignment — Amazon Q is covered under AWS’s compliance programs; confirm the current eligibility list (e.g. for HIPAA, SOC, ISO) on AWS’s compliance pages for the specific Q product and region you plan to use.
getting started

VIIIGetting started with Amazon Q

The fastest path depends on which product you need. Both start free or small and scale per seat.

For a production Q Business rollout — connector configuration across many sources, permission mapping, index sizing, guardrails, and change management — this is the kind of engagement CloudRoute routes to a vetted AWS partner, with AWS credits covering the build. See the next section for how that works.

Start with Q Developer

Install the Amazon Q extension in your IDE (VS Code, JetBrains, Visual Studio, or Eclipse) or the CLI. Sign in with a free Builder ID to use the Free tier immediately — no AWS account required to try it. To roll it out across a team on the Pro tier, set up subscriptions through IAM Identity Center so licenses, policies, and limits are managed centrally.

Start with Q Business

In the AWS console, create a Q Business application, connect it to your identity provider via IAM Identity Center, then add data-source connectors (start with one or two high-value sources such as SharePoint or Confluence). Configure the index capacity, set guardrails and access controls, then share the web experience with a pilot group before expanding. Because Q Business spans data, identity, and security domains, many teams scope a focused pilot first rather than connecting everything at once.

the q family vs the field

Amazon Q vs the competitive set, at a glance

A single scannable read across both markets Amazon Q plays in. Use it to place Q against the alternative your team is also weighing.

ProductCategoryBest whenPricing modelData not used to train?Standout strength
Amazon Q DeveloperAI coding assistantAWS-heavy stack; want managed code upgradesFree / ~$19 per user/moYesAWS awareness + /transform upgrades
Amazon Q BusinessEnterprise RAG assistantData & security perimeter live in AWS~$3 / ~$20 per user/mo + indexYesPer-user permissions + 40+ connectors in your account
GitHub CopilotAI coding assistantGitHub-centric teams; broad IDE + model choice~$10–$39 per user/moYes (Business/Enterprise)Market-leading ecosystem & adoption
Microsoft 365 CopilotEnterprise assistantStandardized on Microsoft 365~$30 per user/moYesNative Microsoft Graph grounding
ChatGPT EnterpriseGeneral assistantWant top raw model quality + flexibilityCustom / per-seatYesFrontier model quality, broad tooling
Pricing is representative for 2026 and varies by tier/region — confirm on each vendor's page. Amazon Q's consistent edge across both rows is governance and AWS-native integration, not raw model quality.
thinking about Q Business?
Get a vetted AWS partner to build Q Business — funded by AWS credits, $0 to you
Get matched in 24h →
a recent match

A Q Business rollout, funded by AWS credits — anonymized

inquiry · mid-market insurance, ~900 employees, AWS-native
Mid-market insurance carrier, ~900 employees, core systems already on AWS

Situation: Internal support was drowning: agents and underwriters asked the same policy and procedure questions repeatedly, and answers were scattered across SharePoint, Confluence, and an S3 archive of PDF policy documents. Microsoft 365 Copilot covered the SharePoint content but not the S3 archive or the Salesforce records, and a separate external assistant was a non-starter for the security team because the policy data could not leave the company’s AWS perimeter. They wanted one assistant, grounded in all their sources, with strict per-user permissions — and they had no internal team free to build it.

What CloudRoute did: Routed within a day to an AWS Advanced-tier partner with IAM Identity Center and Q Business experience. CloudRoute helped the partner file for AWS credits to fund the engagement: a Bedrock/GenAI proof-of-concept pool to cover the pilot, with Activate Portfolio credits behind it for the broader AWS spend. The partner stood up a Q Business application, federated identity to the carrier’s existing Entra ID, connected SharePoint, Confluence, S3, and Salesforce, mapped permissions so each role only saw entitled documents, and configured guardrails before a 60-person pilot.

Outcome: Pilot answered ~80% of routine policy questions with citations inside four weeks; the carrier expanded to ~600 Pro seats over the following quarter. Roughly the first $40K of AWS consumption across the pilot and rollout was credit-funded. CloudRoute’s commission was paid by the partner out of AWS’s engagement funding — the customer paid $0 to CloudRoute.

pilot window: 4 weeks · seats at expansion: ~600 · credit-funded AWS spend: ~$40K · cost to customer: $0

faq

Common questions

What is the difference between Amazon Q Developer and Amazon Q Business?
They are two separate products that share the Amazon Q brand. Q Developer is an AI coding assistant for engineers that runs in IDEs, the CLI, and the AWS console — it completes code, answers technical questions, generates tests, upgrades codebases, and scans for security issues. Q Business is an enterprise assistant that connects to your company data through 40+ connectors (SharePoint, Salesforce, S3, Confluence, and more) and answers employee questions with citations, respecting each user’s existing permissions. Different buyers, different surfaces, different pricing.
How much does Amazon Q cost?
Both products are per-seat with a free entry point. Q Developer: a Free tier and a Pro tier at about $19 per user per month. Q Business: a Lite tier at about $3 per user per month and a Pro tier at about $20 per user per month, plus a separate usage-based charge for the index that stores your data. These figures are representative for 2026 — confirm current pricing on the AWS pricing page.
Does Amazon Q use my data to train its models?
No. Content you send to Amazon Q — prompts, code, and indexed documents — is not used to train the underlying foundation models. Amazon Q is built on Amazon Bedrock and inherits its data-handling guarantees: your data stays within AWS’s security boundary and is not used to improve the base models. Q Business additionally enforces per-user document permissions so answers never cross access boundaries.
What models does Amazon Q use?
Amazon Q runs on foundation models hosted in Amazon Bedrock, and AWS manages model selection inside the product. Unlike calling Bedrock directly — where you choose among Anthropic Claude, Meta Llama, Amazon Nova, Mistral, and others — you do not pick the model in Amazon Q. You choose the product (Developer or Business) and the tier; AWS handles the routing.
How is Amazon Q different from ChatGPT or Microsoft Copilot?
ChatGPT Enterprise is a general-purpose assistant strong on raw model quality; Microsoft 365 Copilot is grounded in the Microsoft Graph and ideal for Microsoft-365-standardized orgs. Amazon Q’s differentiation is integration and governance: it runs inside your AWS account under your IAM and chosen region, Q Business grounds answers in 40+ connectors with per-user permissions, and Q Developer is AWS-aware and can perform managed code transformations. Q tends to win on “it lives in our AWS perimeter” rather than on model quality alone.
Where can I use Amazon Q?
Q Developer runs in IDEs (VS Code, JetBrains, Visual Studio, Eclipse), the command line, the AWS Management Console, and chat (Slack/Teams via AWS Chatbot). Q Business runs as a web app, an embeddable intranet widget, browser extensions, and Slack/Teams. “Q” also appears embedded inside other AWS services — Q in QuickSight for natural-language BI and Q in Connect for contact-center agent assistance — bundled into those services rather than licensed as a separate Q seat.
Is Amazon Q built on Amazon Bedrock?
Yes. Amazon Q is built on Amazon Bedrock, AWS’s managed foundation-model service, which is why it inherits Bedrock’s security and data-handling posture. The difference is abstraction level: Bedrock gives you direct, model-level API access to build your own applications, while Amazon Q is a finished assistant where AWS manages the models for you. If you need full control over models and prompts, you use Bedrock directly; if you want a ready-made assistant, you use Q.
How do I get started with Amazon Q Business — and can AWS credits cover the build?
You create a Q Business application in the AWS console, federate identity via IAM Identity Center, add data-source connectors, size the index, set guardrails, and pilot with a small group. Because it spans data, identity, and security, many teams scope a focused pilot first. AWS credits can fund the build: CloudRoute routes you to a vetted AWS partner and helps secure credits (Bedrock/GenAI proof-of-concept pools, plus Activate Portfolio behind them) so the engagement is funded by AWS — the customer pays $0 to CloudRoute.

Want Amazon Q Business running on your own data?

CloudRoute routes you to a vetted AWS partner who builds Q Business — connectors, identity, permissions, guardrails — and helps secure AWS credits to fund it. Customer pays $0. AWS funds the engagement.

matched within< 24h
credits toward the buildup to $100K+
cost to you$0
Amazon Q — the complete 2026 guide (Developer + Business) · CloudRoute