Interface CognitoUserPoolConfig.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<CognitoUserPoolConfig.Builder,CognitoUserPoolConfig>,SdkBuilder<CognitoUserPoolConfig.Builder,CognitoUserPoolConfig>,SdkPojo
- Enclosing class:
- CognitoUserPoolConfig
public static interface CognitoUserPoolConfig.Builder extends SdkPojo, CopyableBuilder<CognitoUserPoolConfig.Builder,CognitoUserPoolConfig>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CognitoUserPoolConfig.BuilderappIdClientRegex(String appIdClientRegex)A regular expression for validating the incoming Amazon Cognito user pool app client ID.CognitoUserPoolConfig.BuilderawsRegion(String awsRegion)The Amazon Web Services Region in which the user pool was created.CognitoUserPoolConfig.BuilderuserPoolId(String userPoolId)The user pool ID.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
userPoolId
CognitoUserPoolConfig.Builder userPoolId(String userPoolId)
The user pool ID.
- Parameters:
userPoolId- The user pool ID.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
awsRegion
CognitoUserPoolConfig.Builder awsRegion(String awsRegion)
The Amazon Web Services Region in which the user pool was created.
- Parameters:
awsRegion- The Amazon Web Services Region in which the user pool was created.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
appIdClientRegex
CognitoUserPoolConfig.Builder appIdClientRegex(String appIdClientRegex)
A regular expression for validating the incoming Amazon Cognito user pool app client ID. If this value isn't set, no filtering is applied.
- Parameters:
appIdClientRegex- A regular expression for validating the incoming Amazon Cognito user pool app client ID. If this value isn't set, no filtering is applied.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-