Module Types.ConnectionPoolConfigurationInfo
type t
=
{
max_connections_percent : Aws.BaseTypes.Integer.t option;
max_idle_connections_percent : Aws.BaseTypes.Integer.t option;
connection_borrow_timeout : Aws.BaseTypes.Integer.t option;
session_pinning_filters : StringList.t;
init_query : Aws.BaseTypes.String.t option;
}
val make : ?max_connections_percent:Aws.BaseTypes.Integer.t -> ?max_idle_connections_percent:Aws.BaseTypes.Integer.t -> ?connection_borrow_timeout:Aws.BaseTypes.Integer.t -> ?session_pinning_filters:StringList.t -> ?init_query:Aws.BaseTypes.String.t -> unit -> t
val parse : Ezxmlm.nodes -> t option
val to_query : t -> Aws.Query.t
val to_json : t -> [> `Assoc of (string * Aws.Json.t) list ]
val of_json : Aws.Json.t -> t