View source: R/sfn_operations.R
sfn_start_execution | R Documentation |
Starts a state machine execution.
See https://www.paws-r-sdk.com/docs/sfn_start_execution/ for full documentation.
sfn_start_execution(
stateMachineArn,
name = NULL,
input = NULL,
traceHeader = NULL
)
stateMachineArn |
[required] The Amazon Resource Name (ARN) of the state machine to execute. The
|
name |
Optional name of the execution. This name must be unique for your Amazon Web Services account, Region, and state machine for 90 days. For more information, see Limits Related to State Machine Executions in the Step Functions Developer Guide. If you don't provide a name for the execution, Step Functions automatically generates a universally unique identifier (UUID) as the execution name. A name must not contain:
To enable logging with CloudWatch Logs, the name should only contain 0-9, A-Z, a-z, - and _. [ ]: R:%20 |
input |
The string that contains the JSON input data for the execution, for example:
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. |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.