Module Values.StopApplicationInputSource

Request is an operation to stop an application. Parameter ApplicationId is required. Parameters StopConnectedEntity and IncludeEc2InstanceShutdown are optional.

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

    The ID of the application.

    *)
  2. stopConnectedEntity : ConnectedEntityType.t option;
    (*

    Specify the ConnectedEntityType. Accepted type is DBMS. If this parameter is included, the connected DBMS (Database Management System) will be stopped.

    *)
  3. includeEc2InstanceShutdown : Boolean.t option;
    (*

    Boolean. If included and if set to True, the StopApplication operation will shut down the associated Amazon EC2 instance in addition to the application.

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