@Generated(value="jsii-pacmak/1.70.0 (build 03c2f6f)", date="2022-11-01T13:16:45.320Z") @Stability(value=Experimental) public interface IdentityPoolProviders extends software.amazon.jsii.JsiiSerializable
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.cognito.identitypool.*;
IdentityPoolProviders identityPoolProviders = IdentityPoolProviders.builder()
.amazon(IdentityPoolAmazonLoginProvider.builder()
.appId("appId")
.build())
.apple(IdentityPoolAppleLoginProvider.builder()
.servicesId("servicesId")
.build())
.digits(IdentityPoolDigitsLoginProvider.builder()
.consumerKey("consumerKey")
.consumerSecret("consumerSecret")
.build())
.facebook(IdentityPoolFacebookLoginProvider.builder()
.appId("appId")
.build())
.google(IdentityPoolGoogleLoginProvider.builder()
.clientId("clientId")
.build())
.twitter(IdentityPoolTwitterLoginProvider.builder()
.consumerKey("consumerKey")
.consumerSecret("consumerSecret")
.build())
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
IdentityPoolProviders.Builder
A builder for
IdentityPoolProviders |
static class |
IdentityPoolProviders.Jsii$Proxy
An implementation for
IdentityPoolProviders |
| Modifier and Type | Method and Description |
|---|---|
static IdentityPoolProviders.Builder |
builder() |
default IdentityPoolAmazonLoginProvider |
getAmazon()
(experimental) App Id for Amazon Identity Federation.
|
default IdentityPoolAppleLoginProvider |
getApple()
(experimental) Services Id for Apple Identity Federation.
|
default IdentityPoolDigitsLoginProvider |
getDigits()
(experimental) Consumer Key and Secret for Digits Identity Federation.
|
default IdentityPoolFacebookLoginProvider |
getFacebook()
(experimental) App Id for Facebook Identity Federation.
|
default IdentityPoolGoogleLoginProvider |
getGoogle()
(experimental) Client Id for Google Identity Federation.
|
default IdentityPoolTwitterLoginProvider |
getTwitter()
(experimental) Consumer Key and Secret for Twitter Identity Federation.
|
@Stability(value=Experimental) @Nullable default IdentityPoolAmazonLoginProvider getAmazon()
Default: - No Amazon Authentication Provider used without OpenIdConnect or a User Pool
@Stability(value=Experimental) @Nullable default IdentityPoolAppleLoginProvider getApple()
Default: - No Apple Authentication Provider used without OpenIdConnect or a User Pool
@Stability(value=Experimental) @Nullable default IdentityPoolDigitsLoginProvider getDigits()
Default: - No Digits Authentication Provider used without OpenIdConnect or a User Pool
@Stability(value=Experimental) @Nullable default IdentityPoolFacebookLoginProvider getFacebook()
Default: - No Facebook Authentication Provider used without OpenIdConnect or a User Pool
@Stability(value=Experimental) @Nullable default IdentityPoolGoogleLoginProvider getGoogle()
Default: - No Google Authentication Provider used without OpenIdConnect or a User Pool
@Stability(value=Experimental) @Nullable default IdentityPoolTwitterLoginProvider getTwitter()
Default: - No Twitter Authentication Provider used without OpenIdConnect or a User Pool
@Stability(value=Experimental) static IdentityPoolProviders.Builder builder()
IdentityPoolProviders.Builder of IdentityPoolProvidersCopyright © 2022. All rights reserved.