Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to find the AWS Amplify appId?

I have a working AWS Amplify application which I deployed manually. To specify this application using the CLI, I need the so-called appId. But where can I find this? In the console, I can find the name and the appArn but not the appId. ScreenshotOfApp

like image 750
Daan Avatar asked Jun 08 '21 10:06

Daan


People also ask

How do I find my AWS amplify version?

Confirm the installed version of the Amplify CLI. You can find the latest version of the CLI here - https://www.npmjs.com/package/@aws-amplify/cli.

How do I check amplify configuration?

amplify configure will ask you to sign into the AWS Console. Once you're signed in, Amplify CLI will ask you to create an IAM user. Amazon IAM (Identity and Access Management) enables you to manage users and user permissions in AWS. You can learn more about Amazon IAM here.

Where does AWS amplify Host?

AWS Amplify will build and deploy your web app quickly, and host your web app on a globally available content delivery network (CDN) with a friendly URL (example: https://master.appname.amplifyapp.com). To get started, go to AWS Amplify on the AWS console.


1 Answers

If you have access to the AWS console and can see the App ARN field, you can find the AppId:

arn:aws:amplify:eu-west-1:xxxxxxxxxx/APPID

It has this pattern: d[a-z0-9]+

like image 85
DariusP Avatar answered Oct 18 '22 17:10

DariusP