1 Answer
- Newest
- Most votes
- Most comments
0
Hey Ben,
To answer your first bullet point, yes, subscription arguments are handled temporarily while the subscription is active during the duration of the WebSocket connection. Once, the WebSocket connection is terminated, AppSync automatically disposes of the subscription arguments and any associated data.
The service doesn't store the arguments indefinitely; instead, they are held in memory for as long as they are required for active subscriptions.
Good luck with this service!
Using subscriptions for real-time data applications in AWS AppSync
Relevant content
- asked 4 years ago
- AWS OFFICIALUpdated 4 years ago

2.AWS AppSync does not store arguments indefinitely. They are processed in real-time during each request and are discarded once the operation is completed. To persist data for long-term storage, you must use a separate AWS service like DynamoDB, S3, or RDS.