0

Based on aws appsync pricing https://aws.amazon.com/appsync/pricing/ we're charged 8 cents per million minutes of connection to AppSync.

If we open multiple subscriptions on a single device, does each subscription contribute to the "connected minutes" count, or do they all get lumped together?

Sean
  • 107
  • 7

1 Answers1

1

The number of subscriptions from same device does not affect the pricing because all real-time updates are pushed via same WebSocket connection.

You are paying for connection minutes + each real-time update + each mutation that triggers them.

dennis
  • 121
  • 6