Reputation: 8845
After running my head against the limitations of the query options in dynamoDB (specifically the missing option of an SQL-like IN
operator) I decided to move onto Google Cloud DataStore.
In my current implementation I have a simple JSON API setup in API gateway that utilizes a integration request
with a body mapping
to send requests onto DynamoDB as a PutItem
request. The API is served via a custom domain and is used via JS on a website.
Now I would very much like something similar to AWS: API gateway -> Dynamodb for Google Cloud ??? -> DataStore, however I cannot figure out what would be the google equivalent, that can do the same simple creation of a public API, and how to get it setup?
Upvotes: 2
Views: 655
Reputation: 997
I believe that Cloud Endpoints is the equivalent service provided by Google that should satisfy your requirements.
Upvotes: 2