@Generated(value="jsii-pacmak/1.60.0 (build ebcefe6)",
date="2022-06-22T23:28:03.303Z")
public interface UserPoolConfig
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.appsync.*; import software.amazon.awscdk.services.cognito.*; UserPool userPool; UserPoolConfig userPoolConfig = UserPoolConfig.builder() .userPool(userPool) // the properties below are optional .appIdClientRegex("appIdClientRegex") .defaultAction(UserPoolDefaultAction.ALLOW) .build();
Modifier and Type | Interface and Description |
---|---|
static class |
UserPoolConfig.Builder
A builder for
UserPoolConfig |
static class |
UserPoolConfig.Jsii$Proxy
An implementation for
UserPoolConfig |
Modifier and Type | Method and Description |
---|---|
static UserPoolConfig.Builder |
builder() |
default java.lang.String |
getAppIdClientRegex()
(experimental) the optional app id regex.
|
default UserPoolDefaultAction |
getDefaultAction()
(experimental) Default auth action.
|
IUserPool |
getUserPool()
(experimental) The Cognito user pool to use as identity source.
|
IUserPool getUserPool()
default java.lang.String getAppIdClientRegex()
Default: - None
default UserPoolDefaultAction getDefaultAction()
Default: ALLOW
static UserPoolConfig.Builder builder()
UserPoolConfig.Builder
of UserPoolConfig