Module Values.SamlConfigOptionsSource

Describes SAML options for an OpenSearch Serverless security configuration in the form of a key-value map.

Sourcetype nonrec t = {
  1. metadata : SamlMetadata.t;
    (*

    The XML IdP metadata file generated from your identity provider.

    *)
  2. userAttribute : SamlUserAttribute.t option;
    (*

    A user attribute for this SAML integration.

    *)
  3. groupAttribute : SamlGroupAttribute.t option;
    (*

    The group attribute for this SAML integration.

    *)
  4. openSearchServerlessEntityId : OpenSearchServerlessEntityId.t option;
    (*

    Custom entity ID attribute to override the default entity ID for this SAML integration.

    *)
  5. sessionTimeout : SamlConfigOptionsSessionTimeoutInteger.t option;
    (*

    The session timeout, in minutes. Default is 60 minutes (12 hours).

    *)
}
Sourceval context_ : string
Sourceval make : ?userAttribute:??? -> ?groupAttribute:??? -> ?openSearchServerlessEntityId:??? -> ?sessionTimeout:??? -> metadata:SamlMetadata.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of SamlConfigOptionsSessionTimeoutInteger.t | `String of SamlMetadata.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