Artur Grzybowski
Artur Grzybowski
Just move your node_modules to C:\Users\USERNAME\ directory
Here, you are creating cloudfront distribution with lambda-edge event. One of the limitation for lambda-edge functions is unable to use env variables and more like memory limit, executon time limit...
Hi @josoroma Try to add Authorization header to forwarded values to the behavior option in the cloudfront distribution settings. Optionaly you can add access controll headers if you want use...
Default methods handled by the Cloudfront are HEAD and GET, you need to add OPTIONS or all of them. https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-allowedmethods ``` DefaultCacheBehavior: AllowedMethods: - "GET" - "HEAD" - "OPTIONS" -...
Hi, Its because `event.requestContext.identity.cognitoIdentityId ` is availalbe only when you are using aws_iam authorizers. If you want to have information abourt user simply modify request headers and it will be...
Hi, I've got the same problem using Dynsamoose on AWS Lambda, on localhost ubuntu works perfectly. After some investigation I have found what cause the issue: this line https://github.com/dynamoose/dynamoose/blob/a838224d031ba32db6f84d427600beda5ec765ed/lib/DocumentRetriever.ts#L59 Processing...
`limit` (and other functions like `offset`) are added by this library ;-) And only those added functions not working after cloning. The standard sql-bricks functions works perfectly after cloning.