1 Antwort
- Neueste
- Die meisten Stimmen
- Die meisten Kommentare
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:
beantwortet vor einem Jahr
Relevanter Inhalt
- AWS OFFICIALAktualisiert vor 4 Jahren
- AWS OFFICIALAktualisiert vor 8 Monaten
- AWS OFFICIALAktualisiert vor 4 Jahren

That doesn't really answer my question though.