Interface VariableImpactExplanation.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<VariableImpactExplanation.Builder,VariableImpactExplanation>,SdkBuilder<VariableImpactExplanation.Builder,VariableImpactExplanation>,SdkPojo
- Enclosing class:
- VariableImpactExplanation
public static interface VariableImpactExplanation.Builder extends SdkPojo, CopyableBuilder<VariableImpactExplanation.Builder,VariableImpactExplanation>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description VariableImpactExplanation.BuildereventVariableName(String eventVariableName)The event variable name.VariableImpactExplanation.BuilderlogOddsImpact(Float logOddsImpact)The raw, uninterpreted value represented as log-odds of the fraud.VariableImpactExplanation.BuilderrelativeImpact(String relativeImpact)The event variable's relative impact in terms of magnitude on the prediction scores.-
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
-
eventVariableName
VariableImpactExplanation.Builder eventVariableName(String eventVariableName)
The event variable name.
- Parameters:
eventVariableName- The event variable name.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
relativeImpact
VariableImpactExplanation.Builder relativeImpact(String relativeImpact)
The event variable's relative impact in terms of magnitude on the prediction scores. The relative impact values consist of a numerical rating (0-5, 5 being the highest) and direction (increased/decreased) impact of the fraud risk.
- Parameters:
relativeImpact- The event variable's relative impact in terms of magnitude on the prediction scores. The relative impact values consist of a numerical rating (0-5, 5 being the highest) and direction (increased/decreased) impact of the fraud risk.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
logOddsImpact
VariableImpactExplanation.Builder logOddsImpact(Float logOddsImpact)
The raw, uninterpreted value represented as log-odds of the fraud. These values are usually between -10 to +10, but range from - infinity to + infinity.
-
A positive value indicates that the variable drove the risk score up.
-
A negative value indicates that the variable drove the risk score down.
- Parameters:
logOddsImpact- The raw, uninterpreted value represented as log-odds of the fraud. These values are usually between -10 to +10, but range from - infinity to + infinity.-
A positive value indicates that the variable drove the risk score up.
-
A negative value indicates that the variable drove the risk score down.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-
-