Values.StopApplicationInputSourceRequest is an operation to stop an application. Parameter ApplicationId is required. Parameters StopConnectedEntity and IncludeEc2InstanceShutdown are optional.
type nonrec t = {applicationId : ApplicationId.t;The ID of the application.
*)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.
*)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.
*)}val make :
?stopConnectedEntity:??? ->
?includeEc2InstanceShutdown:??? ->
applicationId:ApplicationId.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Boolean of Boolean.t
| `Enum of string
| `String of ApplicationId.t ])
list ]