Module Values.ExecutionSource

Information about a durable execution.

Sourcetype nonrec t = {
  1. durableExecutionArn : DurableExecutionArn.t option;
    (*

    The Amazon Resource Name (ARN) of the durable execution, if this execution is a durable execution.

    *)
  2. durableExecutionName : DurableExecutionName.t option;
    (*

    The unique name of the durable execution, if one was provided when the execution was started.

    *)
  3. functionArn : NameSpacedFunctionArn.t option;
    (*

    The Amazon Resource Name (ARN) of the Lambda function.

    *)
  4. status : ExecutionStatus.t option;
    (*

    The current status of the durable execution.

    *)
  5. startTimestamp : ExecutionTimestamp.t option;
    (*

    The date and time when the durable execution started, in ISO-8601 format (YYYY-MM-DDThh:mm:ss.sTZD).

    *)
  6. endTimestamp : ExecutionTimestamp.t option;
    (*

    The date and time when the durable execution ended, in ISO-8601 format (YYYY-MM-DDThh:mm:ss.sTZD).

    *)
}
Sourceval make : ?durableExecutionArn:??? -> ?durableExecutionName:??? -> ?functionArn:??? -> ?status:??? -> ?startTimestamp:??? -> ?endTimestamp:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of DurableExecutionArn.t | `Timestamp of ExecutionTimestamp.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