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

Amplify Documentation for Android

AWS Amplify is everything mobile developers need to develop cloud-powered fullstack applications without hassle. Easily connect your cross-platform applications to the cloud for data modeling, authentication, storage, serverless functions, and more.

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 new code-first developer experience lets you define your infrastructure with TypeScript.

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
1import * as sns from 'aws-cdk-lib/aws-sns';
2import * as sqs from 'aws-cdk-lib/aws-sqs';
3import { defineBackend } from '@aws-amplify/backend';
4import { auth } from './auth/resource.js';
5import { data } from './data/resource.js';
6
7const backend = defineBackend({
8 auth,
9 data
10});
11
12const customResourceStack = backend.createStack('MyCustomResources');
13
14new sqs.Queue(customResourceStack, 'CustomQueue');
15new sns.Topic(customResourceStack, 'CustomTopic');