Starts a Synchronous Express state machine execution
Source:R/sfn_operations.R
sfn_start_sync_execution.RdStarts a Synchronous Express state machine execution. start_sync_execution is not available for STANDARD workflows.
See https://www.paws-r-sdk.com/docs/sfn_start_sync_execution/ for full documentation.
Usage
sfn_start_sync_execution(
stateMachineArn,
name = NULL,
input = NULL,
traceHeader = NULL,
includedData = NULL
)Arguments
- stateMachineArn
[required] The Amazon Resource Name (ARN) of the state machine to execute.
- name
The name of the execution.
- input
The string that contains the JSON input data for the execution, for example:
"{\"first_name\" : \"Alejandro\"}"If you don't include any JSON input data, you still must include the two braces, for example:
"{}"Length constraints apply to the payload size, and are expressed as bytes in UTF-8 encoding.
- traceHeader
Passes the X-Ray trace header. The trace header can also be passed in the request payload.
For X-Ray traces, all Amazon Web Services services use the
X-Amzn-Trace-Idheader from the HTTP request. Using the header is the preferred mechanism to identify a trace.start_executionandstart_sync_executionAPI operations can also usetraceHeaderfrom the body of the request payload. If both sources are provided, Step Functions will use the header value (preferred) over the value in the request body.- includedData
If your state machine definition is encrypted with a KMS key, callers must have
kms:Decryptpermission to decrypt the definition. Alternatively, you can call the API withincludedData = METADATA_ONLYto get a successful response without the encrypted definition.