Module Values.SAMLOptionsInputSource

The SAML authentication configuration for an Amazon OpenSearch Service domain.

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

    True to enable SAML authentication for a domain.

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

    The SAML Identity Provider's information.

    *)
  3. masterUserName : Username.t option;
    (*

    The SAML master user name, which is stored in the domain's internal user database.

    *)
  4. masterBackendRole : BackendRole.t option;
    (*

    The backend role that the SAML master user is mapped to.

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

    Element of the SAML assertion to use for the user name. Default is NameID.

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

    Element of the SAML assertion to use for backend roles. Default is roles.

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

    The duration, in minutes, after which a user session becomes inactive. Acceptable values are between 1 and 1440, and the default value is 60.

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