Module Values.StartExecutionOutputSource

Starts a state machine execution. A qualified state machine ARN can either refer to a Distributed Map state defined within a state machine, a version ARN, or an alias ARN. The following are some examples of qualified and unqualified state machine ARNs: The following qualified state machine ARN refers to a Distributed Map state with a label mapStateLabel in a state machine named myStateMachine. arn:partition:states:region:account-id:stateMachine:myStateMachine/mapStateLabel If you provide a qualified state machine ARN that refers to a Distributed Map state, the request fails with ValidationException. The following qualified state machine ARN refers to an alias named PROD. arn:<partition>:states:<region>:<account-id>:stateMachine:<myStateMachine:PROD> If you provide a qualified state machine ARN that refers to a version ARN or an alias ARN, the request starts execution for that version or alias. The following unqualified state machine ARN refers to a state machine named myStateMachine. arn:<partition>:states:<region>:<account-id>:stateMachine:<myStateMachine> If you start an execution with an unqualified state machine ARN, Step Functions uses the latest revision of the state machine for the execution. To start executions of a state machine version, call StartExecution and provide the version ARN or the ARN of an alias that points to the version. StartExecution is idempotent for STANDARD workflows. For a STANDARD workflow, if you call StartExecution with the same name and input as a running execution, the call succeeds and return the same response as the original request. If the execution is closed or if the input is different, it returns a 400 ExecutionAlreadyExists error. You can reuse names after 90 days. StartExecution isn't idempotent for EXPRESS workflows.

Sourcetype nonrec t = {
  1. executionArn : Arn.t option;
    (*

    The Amazon Resource Name (ARN) that identifies the execution.

    *)
  2. startDate : Timestamp.t option;
    (*

    The date the execution is started.

    *)
}
Sourcetype nonrec error = [
  1. | `ExecutionAlreadyExists of ExecutionAlreadyExists.t
  2. | `ExecutionLimitExceeded of ExecutionLimitExceeded.t
  3. | `InvalidArn of InvalidArn.t
  4. | `InvalidExecutionInput of InvalidExecutionInput.t
  5. | `InvalidName of InvalidName.t
  6. | `KmsAccessDeniedException of KmsAccessDeniedException.t
  7. | `KmsInvalidStateException of KmsInvalidStateException.t
  8. | `KmsThrottlingException of KmsThrottlingException.t
  9. | `StateMachineDeleting of StateMachineDeleting.t
  10. | `StateMachineDoesNotExist of StateMachineDoesNotExist.t
  11. | `ValidationException of ValidationException.t
  12. | `Unknown_operation_error of string * string option
]
Sourceval make : ?executionArn:??? -> ?startDate:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `ExecutionAlreadyExists of ExecutionAlreadyExists.t | `ExecutionLimitExceeded of ExecutionLimitExceeded.t | `InvalidArn of InvalidArn.t | `InvalidExecutionInput of InvalidExecutionInput.t | `InvalidName of InvalidName.t | `KmsAccessDeniedException of KmsAccessDeniedException.t | `KmsInvalidStateException of KmsInvalidStateException.t | `KmsThrottlingException of KmsThrottlingException.t | `StateMachineDeleting of StateMachineDeleting.t | `StateMachineDoesNotExist of StateMachineDoesNotExist.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `ExecutionAlreadyExists of ExecutionAlreadyExists.t | `ExecutionLimitExceeded of ExecutionLimitExceeded.t | `InvalidArn of InvalidArn.t | `InvalidExecutionInput of InvalidExecutionInput.t | `InvalidName of InvalidName.t | `KmsAccessDeniedException of KmsAccessDeniedException.t | `KmsInvalidStateException of KmsInvalidStateException.t | `KmsThrottlingException of KmsThrottlingException.t | `StateMachineDeleting of StateMachineDeleting.t | `StateMachineDoesNotExist of StateMachineDoesNotExist.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Arn.t | `Timestamp of Timestamp.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t