Elad Ben-Israel

Results 198 comments of Elad Ben-Israel

Design concept: We add a method to `Stack` with the following implementation (name is meh): ```ts public getPropsForResource(className: string, props: any): any { return props; } ``` Then, we somehow...

@Dzhuneyt Aspects can (potentially) mutate constructs after they have been initialized but there are many initialization properties that cannot be modified after the instance is created.

> One thing I've experimented with is in my attempt to create an "organization standard library" is trying to add my own logic to the `core.Construct.onValidate()` method. I couldn't get...

### Representing Unions We have an idiom for JSON unions which is based on a class with static methods. The problem will be what name we should give the methods....

Copy @awslabs/aws-cdk-team

@workeitel wrote: ### Use Case So far `cfn2ts` tool was only used for generating L1 TS files for the [CloudFormation resource specification](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-resource-specification.html). The `cfn2ts` tool is hardcoded to use the...

Let's focus on S3 for Lambda bundles because that is a pertinent use case we have to reduce the side of the mono-module. Specifically, the aws-s3-deployment module currently needs to...

I think we don’t have to do this as part of 2.0, but I suspect that the size of monocdk will eventually be a motivating factor to implement this. I...

Thanks, copying @nija-at

I am wondering if custom resources would be sufficient for these use cases...