Reputation: 1218
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
Reputation: 87
You can use AWS WAF (Web Application Firewall). Rate based rules might be something that you can use.
Upvotes: 2