Module Values_0.StepFunctionsActionSource

Starts execution of a Step Functions state machine.

Sourcetype nonrec t = {
  1. executionNamePrefix : ExecutionNamePrefix.t option;
    (*

    (Optional) A name will be given to the state machine execution consisting of this prefix followed by a UUID. Step Functions automatically creates a unique name for each state machine execution if one is not provided.

    *)
  2. stateMachineName : StateMachineName.t;
    (*

    The name of the Step Functions state machine whose execution will be started.

    *)
  3. roleArn : AwsArn.t;
    (*

    The ARN of the role that grants IoT permission to start execution of a state machine ("Action":"states:StartExecution").

    *)
}
Sourceval context_ : string
Sourceval make : ?executionNamePrefix:??? -> stateMachineName:StateMachineName.t -> roleArn:AwsArn.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of ExecutionNamePrefix.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