Ashish Dhingra

Results 383 comments of Ashish Dhingra

For now, we should update the Readme and API documentation string to mention about deprecation.

Appears to be a useful feature request. Needs review with the team.

Cannot be reproduced with AWS SDK for .NET using the code below: ```C# using Amazon.SimpleSystemsManagement; using Amazon.SimpleSystemsManagement.Model; var response = await (new AmazonSimpleSystemsManagementClient()).DescribeAvailablePatchesAsync(newDescribeAvailablePatchesRequest() { Filters = new List() { new...

The CFN spec [aws-ecs-taskdefinition.json](https://github.com/cdklabs/awscdk-service-spec/blob/main/sources/CloudFormationSchema/us-east-1/aws-ecs-taskdefinition.json) is not yet updated with the specification where `RestartPolicy` property has been supported in `ContainerDefinition`. As soon as the change is available there, CDK L1 constructs...

@tmitchel2 I think you are correct that example at [Executable assembly handlers](https://docs.aws.amazon.com/lambda/latest/dg/csharp-handler.html#csharp-handler-executable) is missing the response return type at the below code: ```C# await LambdaBootstrapBuilder.Create(Handler, new DefaultLambdaJsonSerializer()) .Build() .RunAsync(); ```...

@tmitchel2 I have submitted the feedback request on the documentation page [Executable assembly handlers](https://docs.aws.amazon.com/lambda/latest/dg/csharp-handler.html#csharp-handler-executable) so that it goes to the correct team to update the documentation pages. Closing this issue...

@ivanovvitaly Good morning. Thanks for opening the issue. Although, I'm unable to reproduce the issue: - Following [Getting started with the AWS CDK](https://docs.aws.amazon.com/cdk/v2/guide/getting_started.html) - Installed Nodejs version `v20.15.1 (LTS)` -...

@Dreamescaper Good morning. Thanks for opening the issue. Please let us know the following: - How are you setting LoggingFormat as JSON? Are you using environment variable `AWS_LAMBDA_LOG_FORMAT`? - Could...

> @ashishdhingra > > 1. No, we don't use AWS_LAMBDA_LOG_FORMAT log format, we configure it in Lambda Logging configuration: > > ![image](https://github.com/user-attachments/assets/b1fedcff-1c82-4f34-b465-2574330bf62e) > > > > > > 2. I...

**Findings:** - Looks like PR https://github.com/aws/aws-cdk/pull/30916 per per [file diff](https://github.com/aws/aws-cdk/pull/30916/files#diff-c15860465eec4bc429154eea356a4802746d30b08061d62dd3d9b924f8c33cdf): - Introduced a mandatory property [skipDestinationValidation](https://github.com/aws/aws-cdk/blob/5146fe5ccd259ff6bc1e5330226288994b31174b/packages/aws-cdk-lib/aws-s3/lib/notifications-resource/notifications-resource.ts#L48) which sets the `SkipDestinationValidation` in [createResourceOnce()](https://github.com/aws/aws-cdk/blob/5146fe5ccd259ff6bc1e5330226288994b31174b/packages/aws-cdk-lib/aws-s3/lib/notifications-resource/notifications-resource.ts#L143) while creating `Custom::S3BucketNotifications` custom resource. - It also...