Module Values.AuthenticationSummarySource

A structure that describes whether the workspace uses SAML, IAM Identity Center, or both methods for user authentication, and whether that authentication is fully configured.

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

    Specifies whether the workspace uses SAML, IAM Identity Center, or both methods for user authentication.

    *)
  2. samlConfigurationStatus : SamlConfigurationStatus.t option;
    (*

    Specifies whether the workplace's user authentication method is fully configured.

    *)
}
Sourceval make : ?providers:??? -> ?samlConfigurationStatus:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Enum of string ] 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