Interface SearchUsersRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CopyableBuilder<SearchUsersRequest.Builder,SearchUsersRequest>,RekognitionRequest.Builder,SdkBuilder<SearchUsersRequest.Builder,SearchUsersRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- SearchUsersRequest
public static interface SearchUsersRequest.Builder extends RekognitionRequest.Builder, SdkPojo, CopyableBuilder<SearchUsersRequest.Builder,SearchUsersRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SearchUsersRequest.BuildercollectionId(String collectionId)The ID of an existing collection containing the UserID, used with a UserId or FaceId.SearchUsersRequest.BuilderfaceId(String faceId)ID for the existing face.SearchUsersRequest.BuildermaxUsers(Integer maxUsers)Maximum number of identities to return.SearchUsersRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)SearchUsersRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)SearchUsersRequest.BuilderuserId(String userId)ID for the existing User.SearchUsersRequest.BuilderuserMatchThreshold(Float userMatchThreshold)Optional value that specifies the minimum confidence in the matched UserID to return.-
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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
collectionId
SearchUsersRequest.Builder collectionId(String collectionId)
The ID of an existing collection containing the UserID, used with a UserId or FaceId. If a FaceId is provided, UserId isn’t required to be present in the Collection.
- Parameters:
collectionId- The ID of an existing collection containing the UserID, used with a UserId or FaceId. If a FaceId is provided, UserId isn’t required to be present in the Collection.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
userId
SearchUsersRequest.Builder userId(String userId)
ID for the existing User.
- Parameters:
userId- ID for the existing User.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
faceId
SearchUsersRequest.Builder faceId(String faceId)
ID for the existing face.
- Parameters:
faceId- ID for the existing face.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
userMatchThreshold
SearchUsersRequest.Builder userMatchThreshold(Float userMatchThreshold)
Optional value that specifies the minimum confidence in the matched UserID to return. Default value of 80.
- Parameters:
userMatchThreshold- Optional value that specifies the minimum confidence in the matched UserID to return. Default value of 80.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
maxUsers
SearchUsersRequest.Builder maxUsers(Integer maxUsers)
Maximum number of identities to return.
- Parameters:
maxUsers- Maximum number of identities to return.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
overrideConfiguration
SearchUsersRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
SearchUsersRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-