Module Values.TrustStoreConfigSource

A trust store configuration.

Sourcetype nonrec t = {
  1. trustStoreId : String_.t;
    (*

    The trust store ID.

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

    The configuration to use to advertise trust store CA names.

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

    The configuration to use to ignore certificate expiration.

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