Values.CreateBackendAuthOAuthConfigSourceCreates the OAuth configuration for your Amplify project.
type nonrec t = {domainPrefix : string option;The domain prefix for your Amplify app.
*)oAuthGrantType : OAuthGrantType.t;The OAuth grant type that you use to allow app users to authenticate from your Amplify app.
*)oAuthScopes : ListOfOAuthScopesElement.t;List of OAuth-related flows used to allow your app users to authenticate from your Amplify app.
*)redirectSignInURIs : string list;The redirected URI for signing in to your Amplify app.
*)redirectSignOutURIs : string list;Redirect URLs that OAuth uses when a user signs out of an Amplify app.
*)}val make :
?domainPrefix:??? ->
?socialProviderSettings:??? ->
oAuthGrantType:OAuthGrantType.t ->
oAuthScopes:ListOfOAuthScopesElement.t ->
redirectSignInURIs:string list ->
redirectSignOutURIs:string list ->
unit ->
t