Module Values.ExecutionStartedEventDetailsSource

Contains details about the start of the execution.

Sourcetype nonrec t = {
  1. input : SensitiveData.t option;
    (*

    The JSON data input to the execution. Length constraints apply to the payload size, and are expressed as bytes in UTF-8 encoding.

    *)
  2. inputDetails : HistoryEventExecutionDataDetails.t option;
    (*

    Contains details about the input for an execution history event.

    *)
  3. roleArn : Arn.t option;
    (*

    The Amazon Resource Name (ARN) of the IAM role used for executing Lambda tasks.

    *)
  4. stateMachineAliasArn : Arn.t option;
    (*

    The Amazon Resource Name (ARN) that identifies a state machine alias used for starting the state machine execution.

    *)
  5. stateMachineVersionArn : Arn.t option;
    (*

    The Amazon Resource Name (ARN) that identifies a state machine version used for starting the state machine execution.

    *)
}
Sourceval make : ?input:??? -> ?inputDetails:??? -> ?roleArn:??? -> ?stateMachineAliasArn:??? -> ?stateMachineVersionArn:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of SensitiveData.t | `Structure of (string * [> `Boolean of Truncated.t ]) list ]) 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