Interface IdentityPoolAmazonLoginProvider
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
IdentityPoolAmazonLoginProvider.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:45.446Z")
@Stability(Experimental)
public interface IdentityPoolAmazonLoginProvider
extends software.amazon.jsii.JsiiSerializable
(experimental) Login Provider for Identity Federation using Amazon Credentials.
Example:
IdentityPool.Builder.create(this, "myidentitypool") .identityPoolName("myidentitypool") .authenticationProviders(IdentityPoolAuthenticationProviders.builder() .amazon(IdentityPoolAmazonLoginProvider.builder() .appId("amzn1.application.12312k3j234j13rjiwuenf") .build()) .facebook(IdentityPoolFacebookLoginProvider.builder() .appId("1234567890123") .build()) .google(IdentityPoolGoogleLoginProvider.builder() .clientId("12345678012.apps.googleusercontent.com") .build()) .apple(IdentityPoolAppleLoginProvider.builder() .servicesId("com.myappleapp.auth") .build()) .twitter(IdentityPoolTwitterLoginProvider.builder() .consumerKey("my-twitter-id") .consumerSecret("my-twitter-secret") .build()) .build()) .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forIdentityPoolAmazonLoginProvider
static final class
An implementation forIdentityPoolAmazonLoginProvider
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAppId
(experimental) App Id for Amazon Identity Federation. -
builder
-