Module Values.SignInOptionsSource

A structure that describes the sign-in options for an application portal.

Sourcetype nonrec t = {
  1. origin : SignInOrigin.t;
    (*

    This determines how IAM Identity Center navigates the user to the target application. It can be one of the following values: APPLICATION: IAM Identity Center redirects the customer to the configured ApplicationUrl. IDENTITY_CENTER: IAM Identity Center uses SAML identity-provider initiated authentication to sign the customer directly into a SAML-based application.

    *)
  2. applicationUrl : ApplicationUrl.t option;
    (*

    The URL that accepts authentication requests for an application. This is a required parameter if the Origin parameter is APPLICATION.

    *)
}
Sourceval context_ : string
Sourceval make : ?applicationUrl:??? -> origin:SignInOrigin.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of ApplicationUrl.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