1 réponse
- Le plus récent
- Le plus de votes
- La plupart des commentaires
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:
répondu il y a un an
Contenus pertinents
demandé il y a un an
demandé il y a un an
- AWS OFFICIELA mis à jour il y a 4 ans
- AWS OFFICIELA mis à jour il y a 9 mois
- AWS OFFICIELA mis à jour il y a 4 ans
- AWS OFFICIELA mis à jour il y a 4 ans

That doesn't really answer my question though.