Interface FraudDetectionConfiguration.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<FraudDetectionConfiguration.Builder,FraudDetectionConfiguration>,SdkBuilder<FraudDetectionConfiguration.Builder,FraudDetectionConfiguration>,SdkPojo
- Enclosing class:
- FraudDetectionConfiguration
public static interface FraudDetectionConfiguration.Builder extends SdkPojo, CopyableBuilder<FraudDetectionConfiguration.Builder,FraudDetectionConfiguration>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description FraudDetectionConfiguration.BuilderriskThreshold(Integer riskThreshold)Threshold value for determining whether the speaker is a fraudster.FraudDetectionConfiguration.BuilderwatchlistId(String watchlistId)The identifier of the watchlist against which fraud detection is performed.-
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
-
riskThreshold
FraudDetectionConfiguration.Builder riskThreshold(Integer riskThreshold)
Threshold value for determining whether the speaker is a fraudster. If the detected risk score calculated by Voice ID is higher than the threshold, the speaker is considered a fraudster.
- Parameters:
riskThreshold- Threshold value for determining whether the speaker is a fraudster. If the detected risk score calculated by Voice ID is higher than the threshold, the speaker is considered a fraudster.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
watchlistId
FraudDetectionConfiguration.Builder watchlistId(String watchlistId)
The identifier of the watchlist against which fraud detection is performed.
- Parameters:
watchlistId- The identifier of the watchlist against which fraud detection is performed.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-