Menu
Back to writing

Reflections

What I actually got from the AWS Build Accelerator

I applied to an accelerator expecting the exciting part to be getting accepted. What actually helped was having ten structured weeks where learning cloud infrastructure was the job instead of something I postponed.

What I actually got from the AWS Build Accelerator

When most early-stage founders hear the word "accelerator," they imagine a specific ritual:

  • pitching to angel investors;
  • negotiating SAFE notes;
  • practicing three-minute demo day slides;
  • collecting founder social proof.

When I applied to and was accepted into the inaugural AWS Build Accelerator cohort in late 2023, I had some of that standard excitement. It felt like an external validation badge: Amazon Web Services had reviewed my application and let me in.

My historical LinkedIn post from October 2023 celebrating the kickoff of the inaugural AWS Build Accelerator cohort.

Once the program started, though, I quickly realized it was built on a very different premise.

There was no investor pitch day. There were no equity negotiations.

Instead, the program was ten weeks of intensive, structured technical enablement designed to help early founders make better architectural decisions, understand cloud primitives, and build a Minimum Viable Product properly.

Looking back, that was far more valuable for where I was as a solo builder than a generic pitch competition would have been.

The inaugural cohort in late 2023

The inaugural AWS Build Accelerator ran virtually from October 9 to December 15, 2023.

During the opening Welcome AMA, startup leads from AWS (including Denise Quashie, Huyen Pham, and Sam Kapoor) walked us through the cohort breakdown:

  • 48% of founders joined from North America;
  • 31% from Europe, the Middle East, and Africa;
  • 16% from Asia Pacific and Japan;
  • 4% from Latin America.

Almost half of the cohort was building software and internet platforms, alongside teams working across financial services, healthcare, and developer tools.

The program was structured as a hybrid of self-paced technical modules, live virtual workshops, and direct office hours with AWS Startup Solutions Architects.

Each week covered a specific building block of modern cloud software:

  • compute options, virtual private clouds, and containerization;
  • storage lifecycle management and database design;
  • analytics, serverless patterns, and messaging queues;
  • early AI/ML model deployment and inference.

AWS has since evolved the Build Accelerator into an on-demand learning experience for AWS Activate members on their startups portal. But during that first 2023 cohort, having a live group of global founders moving through the material simultaneously created a unique sense of shared momentum.

Structure as a forcing function

Every single whitepaper, architectural diagram, and API reference taught during the program was already available on the internet for free.

If you have an internet connection and an AWS account, you can read about Amazon S3 bucket policies, EC2 Auto Scaling groups, or Amazon Bedrock anytime you want.

The problem for an early builder is rarely a lack of documentation.

The problem is prioritization.

When you are bootstrapping an app, technical education is almost always reactive:

  1. You pick whatever tool gets the prototype working fastest.
  2. You ignore infrastructure design until something breaks or becomes expensive.
  3. You frantically search Stack Overflow and official docs at midnight to patch the issue.
  4. You move on without fully understanding the underlying system.

A structured ten-week program creates an intentional forcing function.

There were weekly topics to complete. There were live sessions where you could ask an AWS architect why your database query was timing out or how to structure media delivery. There was a defined cohort with an expectation that you stayed active.

That structure turned vague intentions ("I should really learn how to scale this properly someday") into concrete work on the calendar.

Learning cloud primitives before they become emergencies

Working through the curriculum forced me to look more critically at the infrastructure choices I had been making across my projects.

In earlier essays, I wrote about choosing FlutterFlow and Firebase to get prototypes moving, and later centralizing identity across Appwrite and Firebase.

The AWS program gave me the mental models to evaluate those decisions against industrial cloud standards:

  • Decoupled compute and storage: Understanding how to separate application servers from persistent data stores and static asset CDNs.
  • Resilient scaling: Seeing how Auto Scaling groups and load balancers distribute traffic across multiple availability zones.
  • Asynchronous task pipelines: Using managed queues (like SQS) and event buses to prevent heavy operations from blocking user-facing requests.
  • Least-privilege security: Structuring IAM roles and policies so backend workers only have access to the exact resources they need, rather than sharing root API keys.

I did not immediately rewrite my entire stack on day one of the accelerator. Rewriting working code just because you learned a new cloud service is a rookie mistake.

What changed was my vocabulary. I stopped looking at cloud providers as mystery boxes and started understanding how distributed infrastructure actually fits together.

Credits are runway, not architecture

Qualifying participants in the inaugural cohort were eligible for up to $2,000 in AWS Activate credits.

For an early builder paying server bills out of pocket, credits are a huge relief. They reduce the financial pressure of testing new ideas and give you the runway to experiment with architectures you might otherwise avoid due to cost fears.

At the same time, credits come with an interesting trap:

It is easy to design a system around whatever you happen to have credits for, rather than what your application actually needs.

A $2,000 credit package lowers the price of experimentation, but it does not lower the operational complexity. If a service is hard to maintain or misaligned with your product roadmap, having credits for it does not make it the right tool.

The healthiest way to treat startup credits is as an educational subsidy: use them to test, benchmark, and learn without financial stress, but keep your production architecture grounded in what you can afford and understand long after the credits expire.

The showcase as a durable marker

At the end of the ten weeks, active participants had the opportunity to be included in the public AWS Startups ecosystem.

Years later, Omni's profile on the AWS Startups Showcase still exists.

Omni's profile on the official AWS Startups Showcase directory.

While the profile text has naturally evolved over time to reflect Omni's current focus on local-first AI knowledge workspaces, the presence on startups.aws.com remains a durable, independent record of that early building phase.

It was a pleasant side effect of completing the program, though not the primary reason to participate.

Accelerators are different products for different needs

My experience with the AWS Build Accelerator helped clarify how I think about startup programs in general.

In a later reflection on applying to Antler Singapore, I looked at the venture capital model of accelerator: programs built primarily around founder selection, team formation, and rapid fundraising.

The AWS Build Accelerator was a completely different product:

Venture Accelerators (e.g. Antler, YC):
  Goal ───► Founder Selection ───► Equity / Capital ───► Investor Pitching
 
Technical Accelerators (e.g. AWS Build):
  Goal ───► Technical Enablement ───► Architecture ───► Working MVP

Neither model is inherently better. They solve different founder constraints:

  • If you need capital, co-founders, and institutional introductions, a venture accelerator is the right vehicle.
  • If you are building software and need technical guidance, cloud credits, and structured discipline to get your product architected properly, a technical program delivers immediate utility.

Understanding which constraint is holding you back helps you choose the right program instead of applying to everything blindly.

What I kept

I did not leave the AWS Build Accelerator with a radically transformed company, and the program did not magically hand me product-market fit.

What it gave me was ten weeks of dedicated structure where learning foundational cloud engineering was part of the job.

I learned to think about infrastructure in terms of contracts, failure domains, and scalability rather than quick temporary hacks.

If you ever have the chance to join a structured technical program, do not join it for the logo or the social media announcement.

Join it for the discipline.

The badge disappears from your feed in a week.

The architectural clarity stays in your code for years.

Back to work.