11

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

Daan
  • 2,478
  • 3
  • 36
  • 76
  • 1
    In your application directory, look in the /amplify/backend/amplify-meta.json file. You should see "AmplifyAppId" in there – Kevin Horgan Jun 08 '21 at 11:42
  • I haven't got such a folder. I just uploaded a zip with the build folder content in it. – Daan Jun 08 '21 at 12:01
  • 2
    OK if you go into the AMS Amplify screen then choose App settings and then General (menu left side of the screen), you should see the "App details" screen. Look for the App ARN. The last part of this string should be your app id. So for example "dt2d2jf2cliyx" in this dummy App ARN : arn:aws:amplify:eu-central-1:9999999999:apps/dt2d2jt2cliyx – Kevin Horgan Jun 08 '21 at 12:15

1 Answers1

21

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]+

DariusP
  • 448
  • 4
  • 9