@Generated(value="jsii-pacmak/1.58.0 (build f8ba112)", date="2022-05-11T19:24:27.286Z") @Stability(value=Experimental) public interface IdentityPoolAmazonLoginProvider extends software.amazon.jsii.JsiiSerializable
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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
IdentityPoolAmazonLoginProvider.Builder
A builder for
IdentityPoolAmazonLoginProvider |
static class |
IdentityPoolAmazonLoginProvider.Jsii$Proxy
An implementation for
IdentityPoolAmazonLoginProvider |
| Modifier and Type | Method and Description |
|---|---|
static IdentityPoolAmazonLoginProvider.Builder |
builder() |
String |
getAppId()
(experimental) App Id for Amazon Identity Federation.
|
@Stability(value=Experimental) @NotNull String getAppId()
@Stability(value=Experimental) static IdentityPoolAmazonLoginProvider.Builder builder()
Copyright © 2022. All rights reserved.