Skip to content

Commit 3adf841

Browse files
fix(stepfunctions): cfnSpec breaks definitionSubstitutions prop (#21887)
Patches cfnspec to allow `CfnStateMachine.DefinitionSubstitutions` to synthesize again fixes: #21653 ---- ### All Submissions: * [ ] Have you followed the guidelines in our [Contributing guide?](https://github.com/aws/aws-cdk/blob/main/CONTRIBUTING.md) ### Adding new Unconventional Dependencies: * [ ] This PR adds new unconventional dependencies following the process described [here](https://github.com/aws/aws-cdk/blob/main/CONTRIBUTING.md/#adding-new-unconventional-dependencies) ### New Features * [ ] Have you added the new feature to an [integration test](https://github.com/aws/aws-cdk/blob/main/INTEGRATION_TESTS.md)? * [ ] Did you use `yarn integ` to deploy the infrastructure and generate the snapshot (i.e. `yarn integ` without `--dry-run`)? *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
1 parent c607ca5 commit 3adf841

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"ResourceTypes": {
3+
"AWS::StepFunctions::StateMachine": {
4+
"patch": {
5+
"description": "Revert primitive item type on DefinitionSubstitutions property to string",
6+
"operations": [
7+
{
8+
"op": "replace",
9+
"path": "/Properties/DefinitionSubstitutions/PrimitiveItemType",
10+
"value": "String"
11+
}
12+
]
13+
}
14+
}
15+
}
16+
}

0 commit comments

Comments
 (0)