AWS SDK Version 3 for .NET
API Reference

AWS services or capabilities described in AWS Documentation may vary by region/location. Click Getting Started with Amazon AWS to see specific differences applicable to the China (Beijing) Region.

Starts a Synchronous Express state machine execution. StartSyncExecution is not available for STANDARD workflows.

StartSyncExecution will return a 200 OK response, even if your execution fails, because the status code in the API response doesn't reflect function errors. Error codes are reserved for errors that prevent your execution from running, such as permissions errors, limit errors, or issues with your state machine code and configuration.

This API action isn't logged in CloudTrail.

Note:

For .NET Core this operation is only available in asynchronous form. Please refer to StartSyncExecutionAsync.

Namespace: Amazon.StepFunctions
Assembly: AWSSDK.StepFunctions.dll
Version: 3.x.y.z

Syntax

C#
public abstract StartSyncExecutionResponse StartSyncExecution(
         StartSyncExecutionRequest request
)

Parameters

request
Type: Amazon.StepFunctions.Model.StartSyncExecutionRequest

Container for the necessary parameters to execute the StartSyncExecution service method.

Return Value


The response from the StartSyncExecution service method, as returned by StepFunctions.

Exceptions

ExceptionCondition
InvalidArnException The provided Amazon Resource Name (ARN) is not valid.
InvalidExecutionInputException The provided JSON input data is not valid.
InvalidNameException The provided name is not valid.
KmsAccessDeniedException Either your KMS key policy or API caller does not have the required permissions.
KmsInvalidStateException The KMS key is not in valid state, for example: Disabled or Deleted.
KmsThrottlingException Received when KMS returns ThrottlingException for a KMS call that Step Functions makes on behalf of the caller.
StateMachineDeletingException The specified state machine is being deleted.
StateMachineDoesNotExistException The specified state machine does not exist.
StateMachineTypeNotSupportedException State machine type is not supported.

Version Information

.NET Framework:
Supported in: 4.5 and newer, 3.5

See Also