Interface IdentityPoolAuthenticationProviders
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
IdentityPoolAuthenticationProviders.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-22T02:24:11.209Z")
@Stability(Experimental)
public interface IdentityPoolAuthenticationProviders
extends software.amazon.jsii.JsiiSerializable
(experimental) External Authentication Providers for usage in Identity Pool.
Example:
OpenIdConnectProvider openIdConnectProvider; IdentityPool.Builder.create(this, "myidentitypool") .identityPoolName("myidentitypool") .authenticationProviders(IdentityPoolAuthenticationProviders.builder() .google(IdentityPoolGoogleLoginProvider.builder() .clientId("12345678012.apps.googleusercontent.com") .build()) .openIdConnectProviders(List.of(openIdConnectProvider)) .customProvider("my-custom-provider.example.com") .build()) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forIdentityPoolAuthenticationProviders
static final class
An implementation forIdentityPoolAuthenticationProviders
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default IdentityPoolAmazonLoginProvider
(experimental) The Amazon Authentication Provider associated with this Identity Pool.default IdentityPoolAppleLoginProvider
getApple()
(experimental) The Apple Authentication Provider associated with this Identity Pool.default String
(experimental) The developer provider name to associate with this Identity Pool.(experimental) The Facebook Authentication Provider associated with this Identity Pool.default IdentityPoolGoogleLoginProvider
(experimental) The Google Authentication Provider associated with this Identity Pool.default List<IOpenIdConnectProvider>
(experimental) The OpenIdConnect Provider associated with this Identity Pool.default List<ISamlProvider>
(experimental) The Security Assertion Markup Language provider associated with this Identity Pool.default IdentityPoolTwitterLoginProvider
(experimental) The Twitter Authentication Provider associated with this Identity Pool.default List<IUserPoolAuthenticationProvider>
(experimental) The User Pool Authentication Providers associated with this Identity Pool.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAmazon
(experimental) The Amazon Authentication Provider associated with this Identity Pool.Default: - No Amazon Authentication Provider used without OpenIdConnect or a User Pool
-
getApple
(experimental) The Apple Authentication Provider associated with this Identity Pool.Default: - No Apple Authentication Provider used without OpenIdConnect or a User Pool
-
getCustomProvider
(experimental) The developer provider name to associate with this Identity Pool.Default: - no custom provider
-
getFacebook
(experimental) The Facebook Authentication Provider associated with this Identity Pool.Default: - No Facebook Authentication Provider used without OpenIdConnect or a User Pool
-
getGoogle
(experimental) The Google Authentication Provider associated with this Identity Pool.Default: - No Google Authentication Provider used without OpenIdConnect or a User Pool
-
getOpenIdConnectProviders
(experimental) The OpenIdConnect Provider associated with this Identity Pool.Default: - no OpenIdConnectProvider
-
getSamlProviders
(experimental) The Security Assertion Markup Language provider associated with this Identity Pool.Default: - no SamlProvider
-
getTwitter
(experimental) The Twitter Authentication Provider associated with this Identity Pool.Default: - No Twitter Authentication Provider used without OpenIdConnect or a User Pool
-
getUserPools
(experimental) The User Pool Authentication Providers associated with this Identity Pool.Default: - no User Pools associated
-
builder
-