@Generated(value="jsii-pacmak/1.70.0 (build 03c2f6f)", date="2022-11-01T13:16:45.312Z") @Stability(value=Experimental) public interface IdentityPoolAppleLoginProvider 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 |
IdentityPoolAppleLoginProvider.Builder
A builder for
IdentityPoolAppleLoginProvider |
static class |
IdentityPoolAppleLoginProvider.Jsii$Proxy
An implementation for
IdentityPoolAppleLoginProvider |
| Modifier and Type | Method and Description |
|---|---|
static IdentityPoolAppleLoginProvider.Builder |
builder() |
String |
getServicesId()
(experimental) App Id for Apple Identity Federation.
|
@Stability(value=Experimental) @NotNull String getServicesId()
@Stability(value=Experimental) static IdentityPoolAppleLoginProvider.Builder builder()
Copyright © 2022. All rights reserved.