Eli Polonsky
Eli Polonsky
Non deterministic auto-generated function name causing unexpected diffs. ### Reproduction Steps Using this code: ```ts new cloudfront.Function(stack, 'Function', { code: cloudfront.FunctionCode.fromInline('function handler(event) { return event.request }'), }); ``` 1. synth...
This is a request for initial feedback about a possible RFC for modeling stateful resources in the CDK core framework. [Rendered Version](https://github.com/aws/aws-cdk-rfcs/blob/epolon/stateful-resources/text/stateful-resources-one-pager.md) --- _By submitting this pull request, I confirm...
|PR|Champion| |--|--------| |#245 | @eladb | ## Description When we introduce breaking changes to `experimental` libraries that require resource replacements, or in general are considered highly intrusive, we should provide...
## :bug: Bug Report ### Affected Languages The problem is with `jsii-rosetta`, which is not a jsii module in itself and only available in `TypeScript`. ### General Information * **JSII...
We've been saying quite a few failures in this workflow recently, that resolve after a retry. Lets curate these errors as we see them here, so that at some point...
For various reasons, it might be the case that messages were lost from the pipeline before properly ingested. Right now, if a package was discovered and staged, but was lost...
This [commit](https://github.com/Naturalclar/issue-action/commit/b135c39f0eb4c1664faa23d89a5db80ef9c66055) made it so that keywords are treated as regular expressions, as opposed to literal strings before. This resulted in our [action](https://github.com/aws/aws-cdk/pull/13111/checks?check_run_id=1919212444) failing with: ```console issue content: chore: fix...
TODO --- By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.
The python documentation generated for this code: ```ts export interface SecretValue { readonly secret: ISecret; readonly key: string; } export interface EnvValueFromSecretOptions { readonly optional?: boolean; } public static fromSecretValue(secretValue:...
For example, a method signature like so: ```ts public add(...scopes: IDependable[]) ``` Translates into: ```java public void add(IDependable scopes) ``` This is true for all languages. > See https://constructs.dev/packages/constructs/v/10.0.98/api/DependencyGroup?lang=java for...