Skip to content

Commit

Permalink
chore(merge-back): 1.184.1 (#23460)
Browse files Browse the repository at this point in the history
  • Loading branch information
mergify[bot] authored Dec 24, 2022
2 parents 865d094 + 1d83858 commit e194154
Show file tree
Hide file tree
Showing 4 changed files with 971 additions and 4 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

## [1.184.1](https://github.com/aws/aws-cdk/compare/v1.184.0...v1.184.1) (2022-12-23)

### Bug Fixes

* **cfnspec:** v101.0.0 introduced specific types on several types that previously were typed as json

## [1.184.0](https://github.com/aws/aws-cdk/compare/v1.183.0...v1.184.0) (2022-12-21)


Expand Down
6 changes: 3 additions & 3 deletions packages/@aws-cdk/aws-s3objectlambda/lib/access-point.ts
Original file line number Diff line number Diff line change
Expand Up @@ -232,9 +232,9 @@ export class AccessPoint extends AccessPointBase {
{
actions: ['GetObject'],
contentTransformation: {
awsLambda: {
functionArn: props.handler.functionArn,
functionPayload: props.payload ? JSON.stringify(props.payload) : undefined,
AwsLambda: {
FunctionArn: props.handler.functionArn,
FunctionPayload: props.payload ? JSON.stringify(props.payload) : undefined,
},
},
},
Expand Down
Loading

0 comments on commit e194154

Please sign in to comment.