{"payload":{"feedbackUrl":"https://github.com/orgs/community/discussions/53140","repo":{"id":529310777,"defaultBranch":"main","name":"aws-cdk","ownerLogin":"RaphaelManke","currentUserCanPush":false,"isFork":true,"isEmpty":false,"createdAt":"2022-08-26T15:28:06.000Z","ownerAvatar":"https://avatars.githubusercontent.com/u/15867688?v=4","public":true,"private":false,"isOrgOwned":false},"refInfo":{"name":"","listCacheKey":"v0:1707567403.0","currentOid":""},"activityList":{"items":[{"before":"d9952610f21eca1ca30aece99c1b911eaaed58b8","after":"265d769b918028b194093d149fcd900549a6d9c6","ref":"refs/heads/v2-release","pushedAt":"2024-04-01T02:33:03.000Z","pushType":"push","commitsCount":201,"pusher":{"login":"github-actions[bot]","name":null,"path":"/apps/github-actions","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/15368?s=80&v=4"},"commit":{"message":"chore(release): 2.134.0 (#29621)\n\nSee [CHANGELOG](https://github.com/aws/aws-cdk/blob/bump/2.134.0/CHANGELOG.md)","shortMessageHtmlLink":"chore(release): 2.134.0 (aws#29621)"}},{"before":"df48fd781a476ada79b6b49f006a60f33f73d409","after":"ac4b32a4a5c2669905bca0024a74f06b90025560","ref":"refs/heads/main","pushedAt":"2024-04-01T02:33:03.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"github-actions[bot]","name":null,"path":"/apps/github-actions","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/15368?s=80&v=4"},"commit":{"message":"chore: update Contributors File (#29666)\n\nAutomated changes by [create-pull-request](https://github.com/peter-evans/create-pull-request) GitHub action","shortMessageHtmlLink":"chore: update Contributors File (aws#29666)"}},{"before":"e92dbec0e5fb51bad6037d01d6131c9ab4ce3f55","after":"df48fd781a476ada79b6b49f006a60f33f73d409","ref":"refs/heads/main","pushedAt":"2024-03-31T16:27:37.000Z","pushType":"push","commitsCount":209,"pusher":{"login":"RaphaelManke","name":"Raphael Manke","path":"/RaphaelManke","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/15867688?s=80&v=4"},"commit":{"message":"fix(ec2): global vpc endpoint support (#29563)\n\n### Issue # (if applicable)\n\nCloses #29560.\n\n### Reason for this change\n\nThe service name generated by the CDK for global VPC endpoints was incorrect, as it contained the stack's region:\n\n```sh\n$ aws ec2 describe-vpc-endpoint-services --region=us-east-1 --service-names=com.amazonaws.s3-global.accesspoint | jq '.ServiceDetails[] | .ServiceName'\n\n\"com.amazonaws.s3-global.accesspoint\"\n```\n\n```ts\nnew CfnOutput(this, \"endpoint\", {\n\tvalue: ec2.InterfaceVpcEndpointAwsService.S3_MULTI_REGION_ACCESS_POINTS.name,\n});\n\n// TestDeployStack.endpoint = com.amazonaws.eu-west-1.s3-global.accesspoint\n```\n\nIn addition, another global endpoint was missing from `InterfaceVpcEndpointAwsService`.\n\n### Description of changes\n\n* The `InterfaceVpcEndpointAwsService` constructor was modified to\n * I would have preferred to switch to a single object for the optional constructor properties (`prefix`, `port`, and now `global`), but couldn't make a breaking change to a publicly accessible constructor\n* `InterfaceVpcEndpointAwsService.S3_MULTI_REGION_ACCESS_POINTS` was changed to be a global VPC endpoint\n* `InterfaceVpcEndpointAwsService.CODECATALYST` was added\n\n### Description of how you validated changes\n\nI've added a unit test to check that the global endpoints' name were set correctly.\n\nI also added an integration test for `InterfaceVpcEndpointAwsService.S3_MULTI_REGION_ACCESS_POINTS`.\nTo test it, I created a publicly accessible EC2 instance on the VPC, connected to it and ran `nslookup accesspoint.s3-global.amazonaws.com` to make sure it was resolvable (see [Configuring a Multi-Region Access Point for use with AWS PrivateLink](https://docs.aws.amazon.com/AmazonS3/latest/userguide/MultiRegionAccessPointsPrivateLink.html)):\n\nWithout the `InterfaceVpcEndpointAwsService.S3_MULTI_REGION_ACCESS_POINTS` interface endpoint:\n```sh\n$ nslookup accesspoint.s3-global.amazonaws.com\nServer: 10.0.0.2\nAddress: 10.0.0.2#53\n\nNon-authoritative answer:\n*** Can't find accesspoint.s3-global.amazonaws.com: No answer\n```\n\nWith the `InterfaceVpcEndpointAwsService.S3_MULTI_REGION_ACCESS_POINTS` interface endpoint:\n```sh\n$ nslookup accesspoint.s3-global.amazonaws.com\nServer: 10.0.0.2\nAddress: 10.0.0.2#53\n\nNon-authoritative answer:\nName: accesspoint.s3-global.amazonaws.com\nAddress: 10.0.156.75\nName: accesspoint.s3-global.amazonaws.com\nAddress: 10.0.246.83\n```\n\n\n### Checklist\n- [x] My code adheres to the [CONTRIBUTING GUIDE](https://github.com/aws/aws-cdk/blob/main/CONTRIBUTING.md) and [DESIGN GUIDELINES](https://github.com/aws/aws-cdk/blob/main/docs/DESIGN_GUIDELINES.md)\n\n----\n\n*By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*","shortMessageHtmlLink":"fix(ec2): global vpc endpoint support (aws#29563)"}},{"before":"b4daf84cf8a90ef38e3a2328df6271bdaf19de01","after":"e92dbec0e5fb51bad6037d01d6131c9ab4ce3f55","ref":"refs/heads/main","pushedAt":"2024-02-17T02:24:12.000Z","pushType":"push","commitsCount":3,"pusher":{"login":"github-actions[bot]","name":null,"path":"/apps/github-actions","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/15368?s=80&v=4"},"commit":{"message":"feat(ecs): credentialSpecs in ContainerDefinitionOptions (#29085)\n\n### Issue # (if applicable)\n\nCloses #N/A\n\n### Reason for this change\n\nv2.127.0 updated the L1 construct for AWS::ECS::TaskDefinition, adding support for the property ContainerDefinitions.CredentialSpecs, [see](https://github.com/aws/aws-cdk/pull/29053). This PR adds support for CredentialSpecs property in the L2 construct used by `Ec2TaskDefinition.addContainer` method.\n\n### Description of changes\n\nAdded property in L2 construct, updated unit test and added integration test.\n\n### Description of how you validated changes\n\n- [x] Unit test updated and validated\n- [x] Integration test added and validated\n\n### Checklist\n- [x] My code adheres to the [CONTRIBUTING GUIDE](https://github.com/aws/aws-cdk/blob/main/CONTRIBUTING.md) and [DESIGN GUIDELINES](https://github.com/aws/aws-cdk/blob/main/docs/DESIGN_GUIDELINES.md)\n\n----\n\n*By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*","shortMessageHtmlLink":"feat(ecs): credentialSpecs in ContainerDefinitionOptions (aws#29085)"}},{"before":"6fbcce66c50a6bea3b2f38541c54af6d5fbffaa7","after":"b4daf84cf8a90ef38e3a2328df6271bdaf19de01","ref":"refs/heads/main","pushedAt":"2024-02-16T02:25:18.000Z","pushType":"push","commitsCount":2,"pusher":{"login":"github-actions[bot]","name":null,"path":"/apps/github-actions","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/15368?s=80&v=4"},"commit":{"message":"feat(events-targets): `launchType` property for ECS task (#29069)\n\n### Issue # (if applicable)\n\nCloses #28990.\n\n### Reason for this change\n\nThere are cases where a task definition is created to be compatible with both EC2 and Fargate, and then we want to run the task in Fargate.\n\n### Description of changes\n\nI created the `launchType` property. The `launchType` is overridden if the property is specified.\n\n### Description of how you validated changes\n\nBoth unit and integ tests\n\n### Checklist\n- [x] My code adheres to the [CONTRIBUTING GUIDE](https://github.com/aws/aws-cdk/blob/main/CONTRIBUTING.md) and [DESIGN GUIDELINES](https://github.com/aws/aws-cdk/blob/main/docs/DESIGN_GUIDELINES.md)\n\n----\n\n*By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*","shortMessageHtmlLink":"feat(events-targets): launchType property for ECS task (aws#29069)"}},{"before":"6c90efc454cb4388ced308a3ffbb4a4a11fb6681","after":"d9952610f21eca1ca30aece99c1b911eaaed58b8","ref":"refs/heads/v2-release","pushedAt":"2024-02-15T02:27:22.000Z","pushType":"push","commitsCount":16,"pusher":{"login":"github-actions[bot]","name":null,"path":"/apps/github-actions","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/15368?s=80&v=4"},"commit":{"message":"chore(release): 2.128.0 (#29107)\n\nSee [CHANGELOG](https://github.com/aws/aws-cdk/blob/bump/2.128.0/CHANGELOG.md)","shortMessageHtmlLink":"chore(release): 2.128.0 (aws#29107)"}},{"before":"a21731c9b1f34525433fbee668ebb2321debf5b8","after":"6fbcce66c50a6bea3b2f38541c54af6d5fbffaa7","ref":"refs/heads/main","pushedAt":"2024-02-15T02:27:21.000Z","pushType":"push","commitsCount":8,"pusher":{"login":"github-actions[bot]","name":null,"path":"/apps/github-actions","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/15368?s=80&v=4"},"commit":{"message":"chore(ec2): correct device name in BastionHostLinux example (#29114)\n\nCloses #29103. \n\nI tested the example and it deploys.\n\n----\n\n*By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*","shortMessageHtmlLink":"chore(ec2): correct device name in BastionHostLinux example (aws#29114)"}},{"before":"e890e89e9fbe46c9f93ef2a16c26bd9a06694ca6","after":"a21731c9b1f34525433fbee668ebb2321debf5b8","ref":"refs/heads/main","pushedAt":"2024-02-14T02:25:38.000Z","pushType":"push","commitsCount":8,"pusher":{"login":"github-actions[bot]","name":null,"path":"/apps/github-actions","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/15368?s=80&v=4"},"commit":{"message":"fix(appconfig): deployment recreated on every cdk deployment (#28782)\n\nEvery time I perform a CDK deployment, the logicalId hash of the deployment resource changes and causes the deployment resource to be deleted and recreated. I'm assuming it is because the configuration `content` is part of the hash creation and I am creating the content using `lazy` and at the time of the hash creation it is still a token.\n\nLooking at the [CloudFormation\ndocs](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-deployment.html) for the deployment resource, a change to _any_ property causes a replacement so I don't think we need to control the recreation logic ourselves, we should just let CloudFormation do the resource replacement for us.\n\n\n----\n\n*By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*","shortMessageHtmlLink":"fix(appconfig): deployment recreated on every cdk deployment (aws#28782)"}},{"before":"46e06e0e5db611ac9a08d578701aa4f34bd7afad","after":"3e869bc3f2d86f276b0c70eefc6b15bc05dff57e","ref":"refs/heads/raphaelmanke/add-pipes-enrichments-alpha","pushedAt":"2024-02-13T22:06:21.000Z","pushType":"push","commitsCount":10,"pusher":{"login":"mergify[bot]","name":null,"path":"/apps/mergify","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/10562?s=80&v=4"},"commit":{"message":"Merge branch 'main' into raphaelmanke/add-pipes-enrichments-alpha","shortMessageHtmlLink":"Merge branch 'main' into raphaelmanke/add-pipes-enrichments-alpha"}},{"before":"abb0fdc94a2e0f1723ad59069d3d222f15b09cc4","after":"46e06e0e5db611ac9a08d578701aa4f34bd7afad","ref":"refs/heads/raphaelmanke/add-pipes-enrichments-alpha","pushedAt":"2024-02-13T20:57:24.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"kaizencc","name":"Kaizen Conroy","path":"/kaizencc","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/36202692?s=80&v=4"},"commit":{"message":"Apply suggestions from code review","shortMessageHtmlLink":"Apply suggestions from code review"}},{"before":"75b6e1d4a42ec0851c75c8436d593283769a2c96","after":"335027098edc415cb61f038d39aedf9514f2ebe0","ref":"refs/heads/raphaelmanke/aws-pipes-targets-alpha","pushedAt":"2024-02-13T20:40:38.000Z","pushType":"push","commitsCount":12,"pusher":{"login":"mergify[bot]","name":null,"path":"/apps/mergify","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/10562?s=80&v=4"},"commit":{"message":"Merge branch 'main' into raphaelmanke/aws-pipes-targets-alpha","shortMessageHtmlLink":"Merge branch 'main' into raphaelmanke/aws-pipes-targets-alpha"}},{"before":"88decc6060732a6e2c1dd4b349b62c6df849ff07","after":"e890e89e9fbe46c9f93ef2a16c26bd9a06694ca6","ref":"refs/heads/main","pushedAt":"2024-02-13T02:25:15.000Z","pushType":"push","commitsCount":3,"pusher":{"login":"github-actions[bot]","name":null,"path":"/apps/github-actions","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/15368?s=80&v=4"},"commit":{"message":"feat(codedeploy): ignoreAlarmConfiguration parameter to Deployment Groups (#26957)\n\nThe alarms on a CodeDeploy group are configurable to be enabled or disabled through the SDK or UI. Bringing in that functionality to the CDK to have parity. The parameter name mirrors the \"Ignore alarm configuration\" checkbox in the alarm configuration section of the UI.\n\nMotivation: Developers are able to disable _rollback_ on alarm, but this leaves deployments in a stopped state should any alarms be active. Including this configuration will align with the expectation that alarms will not block a deployment in lower environments via a flag rather than logic to include/exclude alarms on the deployment group based on environment. I'm sure there are other use cases for disabling the alarm configuration on a deployment group.\n\n----\n\n*By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*","shortMessageHtmlLink":"feat(codedeploy): ignoreAlarmConfiguration parameter to Deployment Gr…"}},{"before":"0a841611ed7969f0e37424c8d25f7a4d89f30fe0","after":"88decc6060732a6e2c1dd4b349b62c6df849ff07","ref":"refs/heads/main","pushedAt":"2024-02-12T02:25:49.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"github-actions[bot]","name":null,"path":"/apps/github-actions","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/15368?s=80&v=4"},"commit":{"message":"feat: allow overriding the filename of the processed file after substitution (#29029)\n\n### Issue # (if applicable)\n\nCloses #28450 \n\n### Reason for this change\n\nCurrently, the filename is automatically generated based on its fingerprint. There's no way to override the resulting filename.\n\n### Description of changes\n\nAdded an optional `destinationKey` parameter. If this is provided, the construct would use the `destinationKey` when uploading the resulting processed file to S3. If the `destinationKey` is not provided, the current approach would be the default.\n\n### Description of how you validated changes\n\nAdded a unit test to confirm that the correct filename is being used.\n\n### Checklist\n- [x] My code adheres to the [CONTRIBUTING GUIDE](https://github.com/aws/aws-cdk/blob/main/CONTRIBUTING.md) and [DESIGN GUIDELINES](https://github.com/aws/aws-cdk/blob/main/docs/DESIGN_GUIDELINES.md)\n\n\n----\n\n*By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*","shortMessageHtmlLink":"feat: allow overriding the filename of the processed file after subst…"}},{"before":"202ba1ef21f40c041d617d0442deaba3779f61b1","after":"abb0fdc94a2e0f1723ad59069d3d222f15b09cc4","ref":"refs/heads/raphaelmanke/add-pipes-enrichments-alpha","pushedAt":"2024-02-10T20:01:54.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"RaphaelManke","name":"Raphael Manke","path":"/RaphaelManke","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/15867688?s=80&v=4"},"commit":{"message":"fix build","shortMessageHtmlLink":"fix build"}},{"before":"57fe8a4ed728abd9d5dc7e596d3a3cd664c750df","after":"202ba1ef21f40c041d617d0442deaba3779f61b1","ref":"refs/heads/raphaelmanke/add-pipes-enrichments-alpha","pushedAt":"2024-02-10T12:26:09.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"RaphaelManke","name":"Raphael Manke","path":"/RaphaelManke","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/15867688?s=80&v=4"},"commit":{"message":"empty line","shortMessageHtmlLink":"empty line"}},{"before":"de8c22a1bb4070a8445215efa074a4b6ce035cd6","after":"57fe8a4ed728abd9d5dc7e596d3a3cd664c750df","ref":"refs/heads/raphaelmanke/add-pipes-enrichments-alpha","pushedAt":"2024-02-10T12:25:16.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"RaphaelManke","name":"Raphael Manke","path":"/RaphaelManke","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/15867688?s=80&v=4"},"commit":{"message":"minor formatting","shortMessageHtmlLink":"minor formatting"}},{"before":null,"after":"de8c22a1bb4070a8445215efa074a4b6ce035cd6","ref":"refs/heads/raphaelmanke/add-pipes-enrichments-alpha","pushedAt":"2024-02-10T12:16:43.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"RaphaelManke","name":"Raphael Manke","path":"/RaphaelManke","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/15867688?s=80&v=4"},"commit":{"message":"feat(pipes-enrichments): new EventBridge Pipes enrichments alpha module","shortMessageHtmlLink":"feat(pipes-enrichments): new EventBridge Pipes enrichments alpha module"}},{"before":"7e2828ee06ed492a91d1221e793eb3ae55e534ad","after":"0a841611ed7969f0e37424c8d25f7a4d89f30fe0","ref":"refs/heads/main","pushedAt":"2024-02-10T10:43:13.000Z","pushType":"push","commitsCount":4,"pusher":{"login":"RaphaelManke","name":"Raphael Manke","path":"/RaphaelManke","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/15867688?s=80&v=4"},"commit":{"message":"chore(merge-back): 2.127.0 (#29061)\n\nSee [CHANGELOG](https://github.com/aws/aws-cdk/blob/merge-back/2.127.0/CHANGELOG.md)","shortMessageHtmlLink":"chore(merge-back): 2.127.0 (aws#29061)"}},{"before":null,"after":"6c90efc454cb4388ced308a3ffbb4a4a11fb6681","ref":"refs/heads/v2-release","pushedAt":"2024-02-10T02:23:37.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"github-actions[bot]","name":null,"path":"/apps/github-actions","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/15368?s=80&v=4"},"commit":{"message":"chore(release): 2.127.0 (#29060)\n\nSee [CHANGELOG](https://github.com/aws/aws-cdk/blob/bump/2.127.0/CHANGELOG.md)","shortMessageHtmlLink":"chore(release): 2.127.0 (aws#29060)"}},{"before":"6333eb4d9feac08e5c0b03e9501e95efa3e7f89c","after":"7e2828ee06ed492a91d1221e793eb3ae55e534ad","ref":"refs/heads/main","pushedAt":"2024-02-10T02:23:37.000Z","pushType":"push","commitsCount":4,"pusher":{"login":"github-actions[bot]","name":null,"path":"/apps/github-actions","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/15368?s=80&v=4"},"commit":{"message":"chore(prlint): fix linter call to listComments (#29056)\n\n----\n\n*By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*","shortMessageHtmlLink":"chore(prlint): fix linter call to listComments (aws#29056)"}},{"before":"dca176548a25d33ad68c732f192eb491ba70a554","after":"75b6e1d4a42ec0851c75c8436d593283769a2c96","ref":"refs/heads/raphaelmanke/aws-pipes-targets-alpha","pushedAt":"2024-02-09T20:58:49.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"RaphaelManke","name":"Raphael Manke","path":"/RaphaelManke","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/15867688?s=80&v=4"},"commit":{"message":"fix typo","shortMessageHtmlLink":"fix typo"}},{"before":"cb50b2042b75525295b4f5e228a2169b5231c3d0","after":"dca176548a25d33ad68c732f192eb491ba70a554","ref":"refs/heads/raphaelmanke/aws-pipes-targets-alpha","pushedAt":"2024-02-09T20:57:38.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"RaphaelManke","name":"Raphael Manke","path":"/RaphaelManke","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/15867688?s=80&v=4"},"commit":{"message":"Update README","shortMessageHtmlLink":"Update README"}},{"before":null,"after":"cb50b2042b75525295b4f5e228a2169b5231c3d0","ref":"refs/heads/raphaelmanke/aws-pipes-targets-alpha","pushedAt":"2024-02-09T20:55:05.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"RaphaelManke","name":"Raphael Manke","path":"/RaphaelManke","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/15867688?s=80&v=4"},"commit":{"message":"Update README","shortMessageHtmlLink":"Update README"}},{"before":"be095a9b0cff69afe1f56bfd79a9b8ede77b62df","after":"0801c5bc60e2879914b1fac7a8171644a0ba25e0","ref":"refs/heads/raphaelmanke/aws-pipes-sources-alpha","pushedAt":"2024-02-09T19:48:52.000Z","pushType":"push","commitsCount":2,"pusher":{"login":"mergify[bot]","name":null,"path":"/apps/mergify","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/10562?s=80&v=4"},"commit":{"message":"Merge branch 'main' into raphaelmanke/aws-pipes-sources-alpha","shortMessageHtmlLink":"Merge branch 'main' into raphaelmanke/aws-pipes-sources-alpha"}},{"before":"81a5c7fe2c447f2e27293a9f1da2f33e8609090b","after":"be095a9b0cff69afe1f56bfd79a9b8ede77b62df","ref":"refs/heads/raphaelmanke/aws-pipes-sources-alpha","pushedAt":"2024-02-09T19:21:06.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"RaphaelManke","name":"Raphael Manke","path":"/RaphaelManke","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/15867688?s=80&v=4"},"commit":{"message":"formatting","shortMessageHtmlLink":"formatting"}},{"before":"46dde1f9c8cd3b747ad0934b5271db1a5dbefa74","after":"6333eb4d9feac08e5c0b03e9501e95efa3e7f89c","ref":"refs/heads/main","pushedAt":"2024-02-09T19:10:17.000Z","pushType":"push","commitsCount":2,"pusher":{"login":"RaphaelManke","name":"Raphael Manke","path":"/RaphaelManke","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/15867688?s=80&v=4"},"commit":{"message":"chore(appconfig): refactor README and integ tests (#29017)\n\n### Reason for this change\n\nMaking changes after API review.\n\n### Description of changes\n\nRefactor README and integ tests.\n\n### Description of how you validated changes\n\n\n\n### Checklist\n- [ ] My code adheres to the [CONTRIBUTING GUIDE](https://github.com/aws/aws-cdk/blob/main/CONTRIBUTING.md) and [DESIGN GUIDELINES](https://github.com/aws/aws-cdk/blob/main/docs/DESIGN_GUIDELINES.md)\n\n\n----\n\n*By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*","shortMessageHtmlLink":"chore(appconfig): refactor README and integ tests (aws#29017)"}},{"before":"e72cd58bcec6e6b3532c627ddf07670df4501e27","after":"81a5c7fe2c447f2e27293a9f1da2f33e8609090b","ref":"refs/heads/raphaelmanke/aws-pipes-sources-alpha","pushedAt":"2024-02-09T19:03:31.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"RaphaelManke","name":"Raphael Manke","path":"/RaphaelManke","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/15867688?s=80&v=4"},"commit":{"message":"formatting","shortMessageHtmlLink":"formatting"}},{"before":"3b3b841c72aa409921c76a54eaf7c1b97cb7a733","after":"e72cd58bcec6e6b3532c627ddf07670df4501e27","ref":"refs/heads/raphaelmanke/aws-pipes-sources-alpha","pushedAt":"2024-02-09T18:53:39.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"RaphaelManke","name":"Raphael Manke","path":"/RaphaelManke","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/15867688?s=80&v=4"},"commit":{"message":"Add README content","shortMessageHtmlLink":"Add README content"}},{"before":"191ace1f4b2de43b8042ce5360b9c0df3853fe91","after":"3b3b841c72aa409921c76a54eaf7c1b97cb7a733","ref":"refs/heads/raphaelmanke/aws-pipes-sources-alpha","pushedAt":"2024-02-09T18:50:59.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"RaphaelManke","name":"Raphael Manke","path":"/RaphaelManke","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/15867688?s=80&v=4"},"commit":{"message":"Add README content","shortMessageHtmlLink":"Add README content"}},{"before":"1acf78fd0f9084ab1e3dbcf371c0f81bda92bfa8","after":"191ace1f4b2de43b8042ce5360b9c0df3853fe91","ref":"refs/heads/raphaelmanke/aws-pipes-sources-alpha","pushedAt":"2024-02-09T18:48:18.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"RaphaelManke","name":"Raphael Manke","path":"/RaphaelManke","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/15867688?s=80&v=4"},"commit":{"message":"Add README content","shortMessageHtmlLink":"Add README content"}}],"hasNextPage":true,"hasPreviousPage":false,"activityType":"all","actor":null,"timePeriod":"all","sort":"DESC","perPage":30,"cursor":"Y3Vyc29yOnYyOpK7MjAyNC0wNC0wMVQwMjozMzowMy4wMDAwMDBazwAAAAQkGLxX","startCursor":"Y3Vyc29yOnYyOpK7MjAyNC0wNC0wMVQwMjozMzowMy4wMDAwMDBazwAAAAQkGLxX","endCursor":"Y3Vyc29yOnYyOpK7MjAyNC0wMi0wOVQxODo0ODoxOC4wMDAwMDBazwAAAAP2zQSb"}},"title":"Activity · RaphaelManke/aws-cdk"}