Module Values.JWTOptionsOutputSource

Describes the JWT options configured for the domain.

Sourcetype nonrec t = {
  1. enabled : Boolean.t option;
    (*

    True if JWT use is enabled.

    *)
  2. subjectKey : String_.t option;
    (*

    The key used for matching the JWT subject attribute.

    *)
  3. rolesKey : String_.t option;
    (*

    The key used for matching the JWT roles attribute.

    *)
  4. jwksUrl : JwksUrl.t option;
    (*

    The configured JWKS URL endpoint from which the cluster retrieves public keys to verify JWT requests.

    *)
  5. publicKey : String_.t option;
    (*

    The key used to verify the signature of incoming JWT requests.

    *)
}
Sourceval make : ?enabled:??? -> ?subjectKey:??? -> ?rolesKey:??? -> ?jwksUrl:??? -> ?publicKey:??? -> 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