Pahud Hsieh

Results 356 comments of Pahud Hsieh

probably related to https://github.com/aws/aws-cdk/pull/29718 which was fixed in [2.136.0](https://github.com/aws/aws-cdk/releases/tag/v2.136.0) but this issue is still relevant in 2.138.0 and this [report](https://github.com/aws/aws-cdk/issues/29936#issuecomment-2195174302) was at 2.147.0. Will discuss this with the team.

OK I can reproduce this issue. Looks like it would roll back to the current CDK CLI execution principal with permission denied on getBucketLocation operation. https://github.com/aws/aws-cdk/blob/0875ef9df4396ab5cd6706aca11698987500e124/packages/cdk-assets/lib/private/handlers/files.ts#L68-L69 Tested with CDK 2.148.0.

Yes it does exist in the CFN [document](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-location-tracker.html#cfn-location-tracker-eventbridgeenabled) and [CFN spec 162.0.0](https://d1uauaxba7bl26.cloudfront.net/latest/gzip/CloudFormationResourceSpecification.json). And it does exist in 2.130.0 api [reference](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_location.CfnTracker.html#eventbridgeenabled). I didn't see any error from my IDE >The field...

Does it help to export that before the cdk deploy like? ``` export DOCKER_BUILDKIT=1 npx cdk synth ```

Thank you for bringing this to our attention. Yes we should improve the doc to get it clarified. Would you like to submit a PR for this?

## Current/Expected Behavior ## Technical Analysis The issue occurs in the implementation of `FieldAwareEventInput` class, which handles the `RuleTargetInput.fromObject()` method. When binding the input to a rule target, the class...

We have a RFC WIP https://github.com/aws/aws-cdk-rfcs/issues/686

`Tags.of(scope).add('foo', 'bar');` is essentially to set tags for "resources in that scope". Consider this example: ```ts export class DummyStack extends Stack { constructor(scope: Construct, id: string, props?: StackProps) { super(scope,...

Hi @newton-wi, Thank you for reporting this issue! You've encountered a combination of an AWS S3 service limitation and poor error handling in the CDK/CloudFormation stack. **Root Cause Analysis:** The...