1 Answer
- Newest
- Most votes
- Most comments
0
Hello,
I understand you want your new Amplify app to use existing resources (S3, DynamoDB, and Cognito) from your old app while maintaining separate applications. Here's how you can connect your new app to existing resources:
-
For Cognito resources:
amplify import authThis will prompt you to select the existing Cognito User Pool and Identity Pool from your old application.
-
For Storage resources:
amplify import storageThis will allow you to select either your existing S3 bucket or DynamoDB table.
These commands will enable your new Amplify application "newApp" to use the resources from your old application "oldApp " while maintaining them as separate apps.
For more detailed information, refer to:
answered a year ago
Relevant content
- asked 2 years ago
- AWS OFFICIALUpdated 4 years ago
- AWS OFFICIALUpdated 4 years ago

That doesn't really answer my question though.