Interface UserPoolAuthenticationProviderBindConfig
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
UserPoolAuthenticationProviderBindConfig.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2025-01-15T21:09:28.913Z")
@Stability(Experimental)
public interface UserPoolAuthenticationProviderBindConfig
extends software.amazon.jsii.JsiiSerializable
(experimental) Represents a UserPoolAuthenticationProvider Bind Configuration.
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.alpha.*; UserPoolAuthenticationProviderBindConfig userPoolAuthenticationProviderBindConfig = UserPoolAuthenticationProviderBindConfig.builder() .clientId("clientId") .providerName("providerName") .serverSideTokenCheck(false) .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forUserPoolAuthenticationProviderBindConfig
static final class
An implementation forUserPoolAuthenticationProviderBindConfig
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
(experimental) Client Id of the Associated User Pool Client.(experimental) The identity providers associated with the UserPool.(experimental) Whether to enable the identity pool's server side token check.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getClientId
(experimental) Client Id of the Associated User Pool Client. -
getProviderName
(experimental) The identity providers associated with the UserPool. -
getServerSideTokenCheck
(experimental) Whether to enable the identity pool's server side token check. -
builder
-