Select your cookie preferences

We use essential cookies and similar tools that are necessary to provide our site and services. We use performance cookies to collect anonymous statistics, so we can understand how customers use our site and make improvements. Essential cookies cannot be deactivated, but you can choose “Customize” or “Decline” to decline performance cookies.

If you agree, AWS and approved third parties will also use cookies to provide useful site features, remember your preferences, and display relevant content, including relevant advertising. To accept or decline all non-essential cookies, choose “Accept” or “Decline.” To make more detailed choices, choose “Customize.”

Name:
interface
Value:
Amplify has re-imagined the way frontend developers build fullstack applications. Develop and deploy without the hassle.

Amplify Documentation for Next.js

AWS Amplify is everything you need to build web and mobile apps. Easy to start, easy to scale.

You can build a fullstack app using Amplify backend building capabilities, or you can deploy your React and Next.js web apps using Amplify Hosting.

How Amplify works >

Build fullstack apps with your framework of choice

You can use AWS Amplify with popular web and mobile frameworks like JavaScript, Flutter, Swift, and React. Build, connect, and host fullstack apps on AWS. Get started by selecting your preferred framework.

Features

Code-first DX

The fullstack TypeScript developer experience lets you focus on your app code instead of infrastructure.

Fullstack Git deployments

Deploy your frontend and backend together on every code commit. Your Git branch is the source of truth.

Faster local development

Per-developer cloud sandbox environments let you quickly iterate during development.

Develop

Flowchart describing...

Deploy

Customize

amplify/backend.ts
import * as sns from 'aws-cdk-lib/aws-sns';
import * as sqs from 'aws-cdk-lib/aws-sqs';
import { defineBackend } from '@aws-amplify/backend';
import { auth } from './auth/resource.js';
import { data } from './data/resource.js';
const backend = defineBackend({
auth,
data
});
const customResourceStack = backend.createStack('MyCustomResources');
new sqs.Queue(customResourceStack, 'CustomQueue');
new sns.Topic(customResourceStack, 'CustomTopic');