My question is if it make sense to limit returned attributes while doing a query / scan to dynamoDB.
I'm doing a query directly from Lambda and I'm fetching around 100 records in one go. After that I return a data to a UI using API gateway. I don't really need all the attributes so my question is - does it make sense to limit them? I.e. instead of getting:
{a,b,c,d,e,f,g}
i will request only
{a,b,c}
Will I save money by limiting size of transferred / requested / returned data or I will simply only reduce response size?