Masashi Tomooka

Results 34 comments of Masashi Tomooka

Using [Lambda Web Adapter](https://github.com/awslabs/aws-lambda-web-adapter) with `AWS_LWA_INVOKE_MODE=response_stream` should just work. The Lambda extension converts transfer-encoding: chunked response to Lambda streaming protocol.

Is it even possible to set filename or extension when using `ZipFile`? I'm afraid not, since there is no such property on the [CFn definition](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html). Maybe [needs-cfn](https://github.com/aws/aws-cdk/issues?q=is%3Aopen+is%3Aissue+label%3Aneeds-cfn).

Hi @jolo-dev Currently `Code.fromInline` only works to render code as a [CloudFormation `ZipFile` prop](https://docs.aws.amazon.com/ja_jp/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-code.html#aws-properties-lambda-function-code-properties): https://github.com/aws/aws-cdk/blob/c66e197f6f8840da6475383dbf2421c3b06ea417/packages/aws-cdk-lib/aws-lambda/lib/function.ts#L902-L911 so the constraints of CloudFormation `ZipFile` are directly imposed on `Code.fromInline`. The actual zip process...

Can we create tables from CFn templates also for DynamoDB local? It would be really great to have such feature because currently we often have to duplicate DDB table definitions...

Hi, I tried using `client-ecs` in LLRT, and managed to get it working. The main points were: 1. set bundle target platform to browser 2. pass credentilas and region explicitly...

Hi @statefb Conversation history grows over time, and I now have >50 conversations. It's just difficult to manage these many entries in the current side bar. Features like section (or...

This can also be useful to call Bedrock client API (InvokeModel), because currently the supported regions are limited (even only us-west-2 for Claude Opus) and often requires cross-region API call.

For me, require() did not work as well, but the below resolved the isssue. I'm not totally sure why but jfyi: 1. create a file `foo.d.ts` somewhere in your project...

It seems we have to set `NPM_ACCESS_LEVEL` environment variable to configure publib. https://github.com/cdklabs/publib/blob/8e4c9b07140940761511b8d810bada0820b2237f/bin/publib-npm#L62-L70 We can fix the code here: https://github.com/projen/projen/blob/dec5d867f15e4c2774efa020331f5b10e8cfe80e/src/release/publisher.ts#L366-L370 But I'm not sure how the default value of NPM_ACCESS_LEVEL...

@mrgrain It was unscoped. Thanks for the fix!