Module Values.SslPolicySource

Information about a policy used for SSL negotiation.

Sourcetype nonrec t = {
  1. sslProtocols : SslProtocols.t option;
    (*

    The protocols.

    *)
  2. ciphers : Ciphers.t option;
    (*

    The ciphers.

    *)
  3. name : SslPolicyName.t option;
    (*

    The name of the policy.

    *)
  4. supportedLoadBalancerTypes : ListOfString.t option;
    (*

    The supported load balancers.

    *)
}
Sourceval make : ?sslProtocols:??? -> ?ciphers:??? -> ?name:??? -> ?supportedLoadBalancerTypes:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of SslProtocol.t | `Structure of (string * [> `Integer of CipherPriority.t | `String of CipherName.t ]) list ] list | `String of SslPolicyName.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