Module Values.StopDurableExecutionRequestSource

Stops a running durable execution. The execution transitions to STOPPED status and cannot be resumed. Any in-progress operations are terminated.

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

    The Amazon Resource Name (ARN) of the durable execution.

    *)
  2. error : ErrorObject.t option;
    (*

    Optional error details explaining why the execution is being stopped.

    *)
}
Sourceval context_ : string
Sourceval make : ?error:??? -> durableExecutionArn:DurableExecutionArn.t -> unit -> t
Sourceval of_header_and_body : ((string, DurableExecutionArn.t) Awso.Import.List.Assoc.t * ErrorObject.t) -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of DurableExecutionArn.t | `Structure of (string * [> `List of [> `String of StackTraceEntry.t ] list | `String of ErrorMessage.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