1 Resposta
- Mais recentes
- Mais votos
- Mais comentários
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:
respondido há um ano
Conteúdo relevante
- AWS OFICIALAtualizada há 4 anos
- AWS OFICIALAtualizada há 4 anos

That doesn't really answer my question though.