@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-07T23:47:03.515Z") @Stability(value=Experimental) public interface IdentityPoolTwitterLoginProvider 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 |
IdentityPoolTwitterLoginProvider.Builder
A builder for
IdentityPoolTwitterLoginProvider |
static class |
IdentityPoolTwitterLoginProvider.Jsii$Proxy
An implementation for
IdentityPoolTwitterLoginProvider |
| Modifier and Type | Method and Description |
|---|---|
static IdentityPoolTwitterLoginProvider.Builder |
builder() |
String |
getConsumerKey()
(experimental) App Id for Twitter Identity Federation.
|
String |
getConsumerSecret()
(experimental) App Secret for Twitter Identity Federation.
|
@Stability(value=Experimental) @NotNull String getConsumerKey()
@Stability(value=Experimental) @NotNull String getConsumerSecret()
@Stability(value=Experimental) static IdentityPoolTwitterLoginProvider.Builder builder()
Copyright © 2022. All rights reserved.