#[non_exhaustive]pub struct SocialProviderSettings {
pub facebook: Option<BackendAuthSocialProviderConfig>,
pub google: Option<BackendAuthSocialProviderConfig>,
pub login_with_amazon: Option<BackendAuthSocialProviderConfig>,
pub sign_in_with_apple: Option<BackendAuthAppleProviderConfig>,
}
Expand description
The settings for using the social identity providers for access to your Amplify app.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.facebook: Option<BackendAuthSocialProviderConfig>
Describes third-party social federation configurations for allowing your app users to sign in using OAuth.
google: Option<BackendAuthSocialProviderConfig>
Describes third-party social federation configurations for allowing your app users to sign in using OAuth.
login_with_amazon: Option<BackendAuthSocialProviderConfig>
Describes third-party social federation configurations for allowing your app users to sign in using OAuth.
sign_in_with_apple: Option<BackendAuthAppleProviderConfig>
Describes Apple social federation configurations for allowing your app users to sign in using OAuth.
Implementations
Describes third-party social federation configurations for allowing your app users to sign in using OAuth.
Describes third-party social federation configurations for allowing your app users to sign in using OAuth.
Describes third-party social federation configurations for allowing your app users to sign in using OAuth.
Describes Apple social federation configurations for allowing your app users to sign in using OAuth.
Creates a new builder-style object to manufacture SocialProviderSettings
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for SocialProviderSettings
impl Send for SocialProviderSettings
impl Sync for SocialProviderSettings
impl Unpin for SocialProviderSettings
impl UnwindSafe for SocialProviderSettings
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more