Module Values.SAMLOptionsOutputSource

Describes the SAML application configured for the domain.

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

    True if SAML is enabled.

    *)
  2. idp : SAMLIdp.t option;
    (*

    Describes the SAML identity provider's information.

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

    The key used for matching the SAML subject attribute.

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

    The key used for matching the SAML roles attribute.

    *)
  5. sessionTimeoutMinutes : IntegerClass.t option;
    (*

    The duration, in minutes, after which a user session becomes inactive.

    *)
}
Sourceval make : ?enabled:??? -> ?idp:??? -> ?subjectKey:??? -> ?rolesKey:??? -> ?sessionTimeoutMinutes:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Integer of IntegerClass.t | `String of String_.t | `Structure of (string * [> `String of SAMLMetadata.t ]) list ]) 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