Module Values.StopApplicationRequestSource

Stops a running application.

Sourcetype nonrec t = {
  1. applicationId : Identifier.t;
    (*

    The unique identifier of the application you want to stop.

    *)
  2. forceStop : Boolean.t option;
    (*

    Stopping an application process can take a long time. Setting this parameter to true lets you force stop the application so you don't need to wait until the process finishes to apply another action on the application. The default value is false.

    *)
}
Sourceval context_ : string
Sourceval make : ?forceStop:??? -> applicationId:Identifier.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `String of Identifier.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