Interface CreateUserRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CopyableBuilder<CreateUserRequest.Builder,CreateUserRequest>,RekognitionRequest.Builder,SdkBuilder<CreateUserRequest.Builder,CreateUserRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- CreateUserRequest
public static interface CreateUserRequest.Builder extends RekognitionRequest.Builder, SdkPojo, CopyableBuilder<CreateUserRequest.Builder,CreateUserRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CreateUserRequest.BuilderclientRequestToken(String clientRequestToken)Idempotent token used to identify the request toCreateUser.CreateUserRequest.BuildercollectionId(String collectionId)The ID of an existing collection to which the new UserID needs to be created.CreateUserRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)CreateUserRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)CreateUserRequest.BuilderuserId(String userId)ID for the UserID to be created.-
Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.rekognition.model.RekognitionRequest.Builder
build
-
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
-
collectionId
CreateUserRequest.Builder collectionId(String collectionId)
The ID of an existing collection to which the new UserID needs to be created.
- Parameters:
collectionId- The ID of an existing collection to which the new UserID needs to be created.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
userId
CreateUserRequest.Builder userId(String userId)
ID for the UserID to be created. This ID needs to be unique within the collection.
- Parameters:
userId- ID for the UserID to be created. This ID needs to be unique within the collection.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
clientRequestToken
CreateUserRequest.Builder clientRequestToken(String clientRequestToken)
Idempotent token used to identify the request to
CreateUser. If you use the same token with multipleCreateUserrequests, the same response is returned. Use ClientRequestToken to prevent the same request from being processed more than once.- Parameters:
clientRequestToken- Idempotent token used to identify the request toCreateUser. If you use the same token with multipleCreateUserrequests, the same response is returned. Use ClientRequestToken to prevent the same request from being processed more than once.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
overrideConfiguration
CreateUserRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
CreateUserRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-