Class UserPoolAuthenticationProvider
java.lang.Object
software.amazon.jsii.JsiiObject
software.amazon.awscdk.services.cognito.identitypool.alpha.UserPoolAuthenticationProvider
- All Implemented Interfaces:
IUserPoolAuthenticationProvider
,software.amazon.jsii.JsiiSerializable
@Generated(value="jsii-pacmak/1.103.1 (build bef2dea)",
date="2024-10-04T00:39:41.516Z")
@Stability(Experimental)
public class UserPoolAuthenticationProvider
extends software.amazon.jsii.JsiiObject
implements IUserPoolAuthenticationProvider
(experimental) Defines a User Pool Authentication Provider.
Example:
IdentityPool identityPool; UserPool userPool = new UserPool(this, "Pool"); identityPool.addUserPoolAuthentication(UserPoolAuthenticationProvider.Builder.create() .userPool(userPool) .disableServerSideTokenCheck(true) .build());
-
Nested Class Summary
Modifier and TypeClassDescriptionstatic final class
(experimental) A fluent builder forUserPoolAuthenticationProvider
.Nested classes/interfaces inherited from class software.amazon.jsii.JsiiObject
software.amazon.jsii.JsiiObject.InitializationMode
Nested classes/interfaces inherited from interface software.amazon.awscdk.services.cognito.identitypool.alpha.IUserPoolAuthenticationProvider
IUserPoolAuthenticationProvider.Jsii$Default, IUserPoolAuthenticationProvider.Jsii$Proxy
-
Constructor Summary
ModifierConstructorDescriptionprotected
UserPoolAuthenticationProvider
(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) protected
UserPoolAuthenticationProvider
(software.amazon.jsii.JsiiObjectRef objRef) -
Method Summary
Modifier and TypeMethodDescriptionbind
(software.constructs.Construct scope, IIdentityPool identityPool) (experimental) The method called when a given User Pool Authentication Provider is added (for the first time) to an Identity Pool.bind
(software.constructs.Construct scope, IIdentityPool identityPool, UserPoolAuthenticationProviderBindOptions _options) (experimental) The method called when a given User Pool Authentication Provider is added (for the first time) to an Identity Pool.Methods inherited from class software.amazon.jsii.JsiiObject
jsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSet
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Constructor Details
-
UserPoolAuthenticationProvider
protected UserPoolAuthenticationProvider(software.amazon.jsii.JsiiObjectRef objRef) -
UserPoolAuthenticationProvider
protected UserPoolAuthenticationProvider(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) -
UserPoolAuthenticationProvider
@Stability(Experimental) public UserPoolAuthenticationProvider(@NotNull UserPoolAuthenticationProviderProps props) - Parameters:
props
- This parameter is required.
-
-
Method Details
-
bind
@Stability(Experimental) @NotNull public UserPoolAuthenticationProviderBindConfig bind(@NotNull software.constructs.Construct scope, @NotNull IIdentityPool identityPool, @Nullable UserPoolAuthenticationProviderBindOptions _options) (experimental) The method called when a given User Pool Authentication Provider is added (for the first time) to an Identity Pool.- Specified by:
bind
in interfaceIUserPoolAuthenticationProvider
- Parameters:
scope
- This parameter is required.identityPool
- This parameter is required._options
-
-
bind
@Stability(Experimental) @NotNull public UserPoolAuthenticationProviderBindConfig bind(@NotNull software.constructs.Construct scope, @NotNull IIdentityPool identityPool) (experimental) The method called when a given User Pool Authentication Provider is added (for the first time) to an Identity Pool.- Specified by:
bind
in interfaceIUserPoolAuthenticationProvider
- Parameters:
scope
- This parameter is required.identityPool
- This parameter is required.
-