Module Values.ChainedInvokeStartedDetailsSource

Contains details about a chained function invocation that has started execution, including start time and execution context.

Sourcetype nonrec t = {
  1. functionName : NamespacedFunctionName.t option;
    (*

    The name or ARN of the Lambda function being invoked.

    *)
  2. tenantId : TenantId.t option;
    (*

    The tenant identifier for the chained invocation.

    *)
  3. input : EventInput.t option;
    (*

    The JSON input payload provided to the chained invocation.

    *)
  4. executedVersion : VersionWithLatestPublished.t option;
    (*

    The version of the function that was executed.

    *)
  5. durableExecutionArn : DurableExecutionArn.t option;
    (*

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

    *)
}
Sourceval make : ?functionName:??? -> ?tenantId:??? -> ?input:??? -> ?executedVersion:??? -> ?durableExecutionArn:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of NamespacedFunctionName.t | `Structure of (string * [> `Boolean of Truncated.t | `String of InputPayload.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