Module Values.SamlConfigurationSource

Provides the SAML 2.0 compliant identity provider (IdP) configuration information Amazon Q Business needs to deploy a Amazon Q Business web experience.

Sourcetype nonrec t = {
  1. metadataXML : SamlMetadataXML.t;
    (*

    The metadata XML that your IdP generated.

    *)
  2. roleArn : RoleArn.t;
    (*

    The Amazon Resource Name (ARN) of an IAM role assumed by users when they authenticate into their Amazon Q Business web experience, containing the relevant Amazon Q Business permissions for conversing with Amazon Q Business.

    *)
  3. userIdAttribute : SamlAttribute.t;
    (*

    The user attribute name in your IdP that maps to the user email.

    *)
  4. userGroupAttribute : SamlAttribute.t option;
    (*

    The group attribute name in your IdP that maps to user groups.

    *)
}
Sourceval context_ : string
Sourceval make : ?userGroupAttribute:??? -> metadataXML:SamlMetadataXML.t -> roleArn:RoleArn.t -> userIdAttribute:SamlAttribute.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of SamlMetadataXML.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