Interface UserPoolDescriptionType.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<UserPoolDescriptionType.Builder,UserPoolDescriptionType>,SdkBuilder<UserPoolDescriptionType.Builder,UserPoolDescriptionType>,SdkPojo
- Enclosing class:
- UserPoolDescriptionType
public static interface UserPoolDescriptionType.Builder extends SdkPojo, CopyableBuilder<UserPoolDescriptionType.Builder,UserPoolDescriptionType>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Deprecated Methods Modifier and Type Method Description UserPoolDescriptionType.BuildercreationDate(Instant creationDate)The date and time when the item was created.UserPoolDescriptionType.Builderid(String id)The user pool ID.default UserPoolDescriptionType.BuilderlambdaConfig(Consumer<LambdaConfigType.Builder> lambdaConfig)A collection of user pool Lambda triggers.UserPoolDescriptionType.BuilderlambdaConfig(LambdaConfigType lambdaConfig)A collection of user pool Lambda triggers.UserPoolDescriptionType.BuilderlastModifiedDate(Instant lastModifiedDate)The date and time when the item was modified.UserPoolDescriptionType.Buildername(String name)The user pool name.UserPoolDescriptionType.Builderstatus(String status)Deprecated.This property is no longer available.UserPoolDescriptionType.Builderstatus(StatusType status)Deprecated.This property is no longer available.-
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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
id
UserPoolDescriptionType.Builder id(String id)
The user pool ID.
- Parameters:
id- The user pool ID.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
name
UserPoolDescriptionType.Builder name(String name)
The user pool name.
- Parameters:
name- The user pool name.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
lambdaConfig
UserPoolDescriptionType.Builder lambdaConfig(LambdaConfigType lambdaConfig)
A collection of user pool Lambda triggers. Amazon Cognito invokes triggers at several possible stages of user pool operations. Triggers can modify the outcome of the operations that invoked them.
- Parameters:
lambdaConfig- A collection of user pool Lambda triggers. Amazon Cognito invokes triggers at several possible stages of user pool operations. Triggers can modify the outcome of the operations that invoked them.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
lambdaConfig
default UserPoolDescriptionType.Builder lambdaConfig(Consumer<LambdaConfigType.Builder> lambdaConfig)
A collection of user pool Lambda triggers. Amazon Cognito invokes triggers at several possible stages of user pool operations. Triggers can modify the outcome of the operations that invoked them.
This is a convenience method that creates an instance of theLambdaConfigType.Builderavoiding the need to create one manually viaLambdaConfigType.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tolambdaConfig(LambdaConfigType).- Parameters:
lambdaConfig- a consumer that will call methods onLambdaConfigType.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
lambdaConfig(LambdaConfigType)
-
status
@Deprecated UserPoolDescriptionType.Builder status(String status)
Deprecated.This property is no longer available.The user pool status.
- Parameters:
status- The user pool status.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
StatusType,StatusType
-
status
@Deprecated UserPoolDescriptionType.Builder status(StatusType status)
Deprecated.This property is no longer available.The user pool status.
- Parameters:
status- The user pool status.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
StatusType,StatusType
-
lastModifiedDate
UserPoolDescriptionType.Builder lastModifiedDate(Instant lastModifiedDate)
The date and time when the item was modified. Amazon Cognito returns this timestamp in UNIX epoch time format. Your SDK might render the output in a human-readable format like ISO 8601 or a Java
Dateobject.- Parameters:
lastModifiedDate- The date and time when the item was modified. Amazon Cognito returns this timestamp in UNIX epoch time format. Your SDK might render the output in a human-readable format like ISO 8601 or a JavaDateobject.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
creationDate
UserPoolDescriptionType.Builder creationDate(Instant creationDate)
The date and time when the item was created. Amazon Cognito returns this timestamp in UNIX epoch time format. Your SDK might render the output in a human-readable format like ISO 8601 or a Java
Dateobject.- Parameters:
creationDate- The date and time when the item was created. Amazon Cognito returns this timestamp in UNIX epoch time format. Your SDK might render the output in a human-readable format like ISO 8601 or a JavaDateobject.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-