Interface DisassociateFacesRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CopyableBuilder<DisassociateFacesRequest.Builder,DisassociateFacesRequest>,RekognitionRequest.Builder,SdkBuilder<DisassociateFacesRequest.Builder,DisassociateFacesRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- DisassociateFacesRequest
public static interface DisassociateFacesRequest.Builder extends RekognitionRequest.Builder, SdkPojo, CopyableBuilder<DisassociateFacesRequest.Builder,DisassociateFacesRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DisassociateFacesRequest.BuilderclientRequestToken(String clientRequestToken)Idempotent token used to identify the request toDisassociateFaces.DisassociateFacesRequest.BuildercollectionId(String collectionId)The ID of an existing collection containing the UserID.DisassociateFacesRequest.BuilderfaceIds(String... faceIds)An array of face IDs to disassociate from the UserID.DisassociateFacesRequest.BuilderfaceIds(Collection<String> faceIds)An array of face IDs to disassociate from the UserID.DisassociateFacesRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)DisassociateFacesRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)DisassociateFacesRequest.BuilderuserId(String userId)ID for the existing UserID.-
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
DisassociateFacesRequest.Builder collectionId(String collectionId)
The ID of an existing collection containing the UserID.
- Parameters:
collectionId- The ID of an existing collection containing the UserID.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
userId
DisassociateFacesRequest.Builder userId(String userId)
ID for the existing UserID.
- Parameters:
userId- ID for the existing UserID.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
clientRequestToken
DisassociateFacesRequest.Builder clientRequestToken(String clientRequestToken)
Idempotent token used to identify the request to
DisassociateFaces. If you use the same token with multipleDisassociateFacesrequests, 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 toDisassociateFaces. If you use the same token with multipleDisassociateFacesrequests, 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.
-
faceIds
DisassociateFacesRequest.Builder faceIds(Collection<String> faceIds)
An array of face IDs to disassociate from the UserID.
- Parameters:
faceIds- An array of face IDs to disassociate from the UserID.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
faceIds
DisassociateFacesRequest.Builder faceIds(String... faceIds)
An array of face IDs to disassociate from the UserID.
- Parameters:
faceIds- An array of face IDs to disassociate from the UserID.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
overrideConfiguration
DisassociateFacesRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
DisassociateFacesRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-