Module Values.AuthenticationDescriptionSource

A structure containing information about the user authentication methods used by the workspace.

Sourcetype nonrec t = {
  1. providers : AuthenticationProviders.t option;
    (*

    Specifies whether this workspace uses IAM Identity Center, SAML, or both methods to authenticate users to use the Grafana console in the Amazon Managed Grafana workspace.

    *)
  2. saml : SamlAuthentication.t option;
    (*

    A structure containing information about how this workspace works with SAML, including what attributes within the assertion are to be mapped to user information in the workspace.

    *)
  3. awsSso : AwsSsoAuthentication.t option;
    (*

    A structure containing information about how this workspace works with IAM Identity Center.

    *)
}
Sourceval make : ?providers:??? -> ?saml:??? -> ?awsSso:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Enum of string ] list | `Structure of (string * [> `Enum of string | `String of SSOClientId.t | `Structure of (string * [> `Integer of LoginValidityDuration.t | `List of [> `String of AllowedOrganization.t ] list | `Structure of (string * [> `List of [> `String of RoleValue.t ] list | `String of IdpMetadataUrl.t ]) list ]) list ]) 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