Interface UnsuccessfulFaceAssociation.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<UnsuccessfulFaceAssociation.Builder,UnsuccessfulFaceAssociation>,SdkBuilder<UnsuccessfulFaceAssociation.Builder,UnsuccessfulFaceAssociation>,SdkPojo
- Enclosing class:
- UnsuccessfulFaceAssociation
public static interface UnsuccessfulFaceAssociation.Builder extends SdkPojo, CopyableBuilder<UnsuccessfulFaceAssociation.Builder,UnsuccessfulFaceAssociation>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description UnsuccessfulFaceAssociation.Builderconfidence(Float confidence)Match confidence with the UserID, provides information regarding if a face association was unsuccessful because it didn't meet UserMatchThreshold.UnsuccessfulFaceAssociation.BuilderfaceId(String faceId)A unique identifier assigned to the face.UnsuccessfulFaceAssociation.Builderreasons(Collection<UnsuccessfulFaceAssociationReason> reasons)The reason why the association was unsuccessful.UnsuccessfulFaceAssociation.Builderreasons(UnsuccessfulFaceAssociationReason... reasons)The reason why the association was unsuccessful.UnsuccessfulFaceAssociation.BuilderreasonsWithStrings(String... reasons)The reason why the association was unsuccessful.UnsuccessfulFaceAssociation.BuilderreasonsWithStrings(Collection<String> reasons)The reason why the association was unsuccessful.UnsuccessfulFaceAssociation.BuilderuserId(String userId)A provided ID for the UserID.-
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
-
faceId
UnsuccessfulFaceAssociation.Builder faceId(String faceId)
A unique identifier assigned to the face.
- Parameters:
faceId- A unique identifier assigned to the face.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
userId
UnsuccessfulFaceAssociation.Builder userId(String userId)
A provided ID for the UserID. Unique within the collection.
- Parameters:
userId- A provided ID for the UserID. Unique within the collection.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
confidence
UnsuccessfulFaceAssociation.Builder confidence(Float confidence)
Match confidence with the UserID, provides information regarding if a face association was unsuccessful because it didn't meet UserMatchThreshold.
- Parameters:
confidence- Match confidence with the UserID, provides information regarding if a face association was unsuccessful because it didn't meet UserMatchThreshold.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
reasonsWithStrings
UnsuccessfulFaceAssociation.Builder reasonsWithStrings(Collection<String> reasons)
The reason why the association was unsuccessful.
- Parameters:
reasons- The reason why the association was unsuccessful.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
reasonsWithStrings
UnsuccessfulFaceAssociation.Builder reasonsWithStrings(String... reasons)
The reason why the association was unsuccessful.
- Parameters:
reasons- The reason why the association was unsuccessful.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
reasons
UnsuccessfulFaceAssociation.Builder reasons(Collection<UnsuccessfulFaceAssociationReason> reasons)
The reason why the association was unsuccessful.
- Parameters:
reasons- The reason why the association was unsuccessful.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
reasons
UnsuccessfulFaceAssociation.Builder reasons(UnsuccessfulFaceAssociationReason... reasons)
The reason why the association was unsuccessful.
- Parameters:
reasons- The reason why the association was unsuccessful.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-