Module Values.FederationParametersSource

Configuration information when authentication mode is FEDERATED.

Sourcetype nonrec t = {
  1. samlMetadataDocument : SamlMetadataDocument.t option;
    (*

    SAML 2.0 Metadata document from identity provider (IdP).

    *)
  2. samlMetadataURL : Url.t option;
    (*

    Provide the metadata URL from your SAML 2.0 compliant identity provider (IdP).

    *)
  3. applicationCallBackURL : Url.t option;
    (*

    The redirect or sign-in URL that should be entered into the SAML 2.0 compliant identity provider configuration (IdP).

    *)
  4. federationURN : Urn.t option;
    (*

    The Uniform Resource Name (URN). Also referred as Service Provider URN or Audience URI or Service Provider Entity ID.

    *)
  5. federationProviderName : FederationProviderName.t option;
    (*

    Name of the identity provider (IdP).

    *)
  6. attributeMap : AttributeMap.t option;
    (*

    SAML attribute name and value. The name must always be Email and the value should be set to the attribute definition in which user email is set. For example, name would be Email and value http://schemas.xmlsoap.org/ws/2005/05/identity/claims/emailaddress. Please check your SAML 2.0 compliant identity provider (IdP) documentation for details.

    *)
}
Sourceval make : ?samlMetadataDocument:??? -> ?samlMetadataURL:??? -> ?applicationCallBackURL:??? -> ?federationURN:??? -> ?federationProviderName:??? -> ?attributeMap:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `String of FederationAttributeKey.t ] * [> `String of FederationAttributeValue.t ]) list | `String of SamlMetadataDocument.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