Benoît Bouré

Results 140 comments of Benoît Bouré

Thanks! I'll merge this now. About doc, I have some new plans to improve it.

Very interested in this as well. If that is of any help, we implemented a custom very basic version of this a while ago (inspired by the python implementation) Here...

@ijemmy It's not, but basically it's an instance of DynamoDB toolbox's [Entity](https://github.com/jeremydaly/dynamodb-toolbox/blob/main/src/classes/Entity/Entity.ts). [putNew](https://gist.github.com/bboure/ffaa1d528c49b7dd5eb529c148f89c0f#file-idempotenthandler-ts-L31) comes from extending the base class. Its does a `put()` with a conditional expression on `attribute_not_exists(pk)`

Hi, I don't think this is possible. The schema is required by CloudFormation. What is your use-case? How does the schema change and why?

You should not add those declarations in your schema, they are internal to AppSync and should not be uploaded. I understand that you're doing this for lining purposes. I also...

I am facing the same problem. If that helps, I found another workaround using v2. ```ts import { SharedIniFileCredentials } from 'aws-sdk'; export const fromIni = (params) => { return...

@vecerek I added this in the return clause to solve the same problem: ```ts expiration: credentials.expireTime || DateTime.now().plus({ minutes: 5, seconds: 30 }).toJSDate(), ``` explanation: If `expiration` is not present,...

Thanks @chandler-barlow for the feedback. Could you share your use-case? Uploading resolvers to S3 vs "inline" is something I'd like to implement. Are you talking about referencing an existing file...

Thank you all, I have been discussing this recently with some teammates. Here is the plan we have: This plugin would upload the VTL/JS files to the deployment bucket (the...

@chandler-barlow This is a solution I considered, but I don't think this is a good idea. As you said, it's "hacky", and there are many things that people might want...