skip to Main Content

There is support for Step Function in Visual Studio Code using AWS Toolkit. I could not find anything similar for Visual Studio 2022.

Is there any way for having Step Functions in Visual Studio 2022?

2

Answers


  1. You do not need AWS Toolkit to code logic using AWS SDK for .NET v3. What you need to do is to install the required .NET Assemblies using NuGET in Visual Studio. Install AWSSDK.StepFunctions – as shown here:

    enter image description here

    Install AWSSDK.Core too.

    Then you can write a .NET APP that uses the .NET Step Functions Service Client.

    https://docs.aws.amazon.com/sdkfornet/v3/apidocs/items/StepFunctions/TStepFunctionsClient.html

    Login or Signup to reply.
  2. AWS Step Functions is not supported in the AWS Toolkit for Visual Studio today. The toolkit’s team is interested in learning more about your use case and what features would add value to your workflow. Please create an issue on Github at https://github.com/aws/aws-toolkit-visual-studio/issues to share any relevant details.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search