August Jelemson
August Jelemson

Reputation: 1218

How to limit AppSync queries for users?

AWS AppSync charges you for the # of GraphQL operations (each request could be a GraphQL query/mutation).
Is there a way to protect from malicious users that spam AppSync and GraphQL operations?
I.E., is it possible to limit the # of GraphQL operations per user (perhaps that every user has a quota).
Is it also possible to detect this type of user and ban them?

Upvotes: 0

Views: 638

Answers (1)

Musa Çıbık
Musa Çıbık

Reputation: 87

You can use AWS WAF (Web Application Firewall). Rate based rules might be something that you can use.

Upvotes: 2

Related Questions