Module Values.UpdateBackendAuthOAuthConfigSource

The OAuth configurations for authenticating users into your Amplify app.

Sourcetype nonrec t = {
  1. domainPrefix : string option;
    (*

    The Amazon Cognito domain prefix used to create a hosted UI for authentication.

    *)
  2. oAuthGrantType : OAuthGrantType.t option;
    (*

    The OAuth grant type to allow app users to authenticate from your Amplify app.

    *)
  3. oAuthScopes : ListOfOAuthScopesElement.t option;
    (*

    The list of OAuth-related flows that can allow users to authenticate from your Amplify app.

    *)
  4. redirectSignInURIs : string list option;
    (*

    Redirect URLs that OAuth uses when a user signs in to an Amplify app.

    *)
  5. redirectSignOutURIs : string list option;
    (*

    Redirect URLs that OAuth uses when a user signs out of an Amplify app.

    *)
  6. socialProviderSettings : SocialProviderSettings.t option;
    (*

    Describes third-party social federation configurations for allowing your users to sign in with OAuth.

    *)
}
Sourceval make : ?domainPrefix:??? -> ?oAuthGrantType:??? -> ?oAuthScopes:??? -> ?redirectSignInURIs:??? -> ?redirectSignOutURIs:??? -> ?socialProviderSettings:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Enum of string | `String of string ] list | `String of string | `Structure of (string * [> `Structure of (string * [> `String of string ]) 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