-
Notifications
You must be signed in to change notification settings - Fork 4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(cli): hotswapping StateMachines with a name fails #17892
Conversation
stateMachineName
parameter no longer failsstateMachineName
property no longer fails
stateMachineName
property no longer failsThere was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks great! A few minor comments before we merge this in.
packages/aws-cdk/lib/api/hotswap/stepfunctions-state-machines.ts
Outdated
Show resolved
Hide resolved
packages/aws-cdk/lib/api/hotswap/stepfunctions-state-machines.ts
Outdated
Show resolved
Hide resolved
packages/aws-cdk/lib/api/hotswap/stepfunctions-state-machines.ts
Outdated
Show resolved
Hide resolved
packages/aws-cdk/test/api/hotswap/state-machine-hotswap-deployments.test.ts
Outdated
Show resolved
Hide resolved
packages/aws-cdk/test/api/hotswap/state-machine-hotswap-deployments.test.ts
Outdated
Show resolved
Hide resolved
packages/aws-cdk/test/api/hotswap/state-machine-hotswap-deployments.test.ts
Outdated
Show resolved
Hide resolved
packages/aws-cdk/test/api/hotswap/state-machine-hotswap-deployments.test.ts
Show resolved
Hide resolved
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
Thank you for contributing! Your pull request will be updated from master and then merged automatically (do not update manually, and be sure to allow changes to be pushed to your fork). |
AWS CodeBuild CI Report
Powered by github-codebuild-logs, available on the AWS Serverless Application Repository |
Thank you for contributing! Your pull request will be updated from master and then merged automatically (do not update manually, and be sure to allow changes to be pushed to your fork). |
Before, when the `stateMachineName` property was used, the value of `stateMachineName` was passed directly to the SDK where an ARN was required. Now, when the `stateMachineName` property is used, we construct the ARN from its value, and pass that ARN to the SDK. Closes aws#17716 ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
Before, when the
stateMachineName
property was used, the value ofstateMachineName
was passed directly to the SDK where an ARN was required. Now, when thestateMachineName
property is used, we construct the ARN from its value, and pass that ARN to the SDK.Closes #17716
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license