Interface IdentityPoolAppleLoginProvider
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
IdentityPoolAppleLoginProvider.Jsii$Proxy
@Generated(value="jsii-pacmak/1.116.0 (build 0eddcff)",
date="2025-10-29T11:15:35.460Z")
@Stability(Stable)
public interface IdentityPoolAppleLoginProvider
extends software.amazon.jsii.JsiiSerializable
Login Provider for identity federation using Apple 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
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forIdentityPoolAppleLoginProviderstatic final classAn implementation forIdentityPoolAppleLoginProvider -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getServicesId
Services ID for Apple identity federation. -
builder
-