Skip to content

Commit

Permalink
Merge branch 'main' into conroy/amplify
Browse files Browse the repository at this point in the history
  • Loading branch information
mergify[bot] committed Jan 16, 2024
2 parents f0c0141 + 66c1109 commit f3cd2fe
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion ROADMAP.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ Security and stability of the CDK is a top priority. If you think you’ve found
* 👂🏽 [CDK CLI Triggers](https://github.com/aws/aws-cdk-rfcs/issues/228) - CLI enhancements are also being considered for post command hooks.

### L2 Abstractions
* 🚀 [Enabling IPv6 on Resources and VPCs](https://github.com/aws/aws-cdk/pull/28366)
* 🔍 [CloudFront Origin Access Control L2](https://github.com/aws/aws-cdk-rfcs/issues/491)
* 🛠️ [Enabling IPv6 on Resources and VPCs](https://github.com/aws/aws-cdk/pull/28366)
* 🔍 [Rewrite EKS L2](https://github.com/aws/aws-cdk-rfcs/issues/605) - drop the custom resource implementation in favor of the native L1.

We are currently investigating other L2s to build out next. Feel free to create an RFC to request.
Expand Down
2 changes: 2 additions & 0 deletions packages/aws-cdk-lib/aws-stepfunctions/lib/input.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ export class TaskInput {
* Use an object as task input
*
* This object may contain JSON path fields as object values, if desired.
*
* Use `sfn.JsonPath.DISCARD` in place of `null` for languages that do not support `null` (i.e. Python).
*/
public static fromObject(obj: { [key: string]: any }) {
return new TaskInput(InputType.OBJECT, obj);
Expand Down

0 comments on commit f3cd2fe

Please sign in to comment.