Interface AdminDeleteUserRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder
,Buildable
,CognitoIdentityProviderRequest.Builder
,CopyableBuilder<AdminDeleteUserRequest.Builder,AdminDeleteUserRequest>
,SdkBuilder<AdminDeleteUserRequest.Builder,AdminDeleteUserRequest>
,SdkPojo
,SdkRequest.Builder
- Enclosing class:
- AdminDeleteUserRequest
public static interface AdminDeleteUserRequest.Builder extends CognitoIdentityProviderRequest.Builder, SdkPojo, CopyableBuilder<AdminDeleteUserRequest.Builder,AdminDeleteUserRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AdminDeleteUserRequest.Builder
overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
AdminDeleteUserRequest.Builder
overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
AdminDeleteUserRequest.Builder
username(String username)
The username of the user that you want to query or modify.AdminDeleteUserRequest.Builder
userPoolId(String userPoolId)
The user pool ID for the user pool where you want to delete the user.-
Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
-
Methods inherited from interface software.amazon.awssdk.services.cognitoidentityprovider.model.CognitoIdentityProviderRequest.Builder
build
-
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
AdminDeleteUserRequest.Builder userPoolId(String userPoolId)
The user pool ID for the user pool where you want to delete the user.
- Parameters:
userPoolId
- The user pool ID for the user pool where you want to delete the user.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
username
AdminDeleteUserRequest.Builder username(String username)
The username of the user that you want to query or modify. The value of this parameter is typically your user's username, but it can be any of their alias attributes. If
username
isn't an alias attribute in your user pool, you can also use theirsub
in this request.- Parameters:
username
- The username of the user that you want to query or modify. The value of this parameter is typically your user's username, but it can be any of their alias attributes. Ifusername
isn't an alias attribute in your user pool, you can also use theirsub
in this request.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
overrideConfiguration
AdminDeleteUserRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
-
overrideConfiguration
AdminDeleteUserRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
-
-