Interface AggregatedVariablesImpactExplanation.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<AggregatedVariablesImpactExplanation.Builder,AggregatedVariablesImpactExplanation>,SdkBuilder<AggregatedVariablesImpactExplanation.Builder,AggregatedVariablesImpactExplanation>,SdkPojo
- Enclosing class:
- AggregatedVariablesImpactExplanation
public static interface AggregatedVariablesImpactExplanation.Builder extends SdkPojo, CopyableBuilder<AggregatedVariablesImpactExplanation.Builder,AggregatedVariablesImpactExplanation>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AggregatedVariablesImpactExplanation.BuildereventVariableNames(String... eventVariableNames)The names of all the event variables that were used to derive the aggregated variables.AggregatedVariablesImpactExplanation.BuildereventVariableNames(Collection<String> eventVariableNames)The names of all the event variables that were used to derive the aggregated variables.AggregatedVariablesImpactExplanation.BuilderlogOddsImpact(Float logOddsImpact)The raw, uninterpreted value represented as log-odds of the fraud.AggregatedVariablesImpactExplanation.BuilderrelativeImpact(String relativeImpact)The relative impact of the aggregated variables 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
-
eventVariableNames
AggregatedVariablesImpactExplanation.Builder eventVariableNames(Collection<String> eventVariableNames)
The names of all the event variables that were used to derive the aggregated variables.
- Parameters:
eventVariableNames- The names of all the event variables that were used to derive the aggregated variables.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
eventVariableNames
AggregatedVariablesImpactExplanation.Builder eventVariableNames(String... eventVariableNames)
The names of all the event variables that were used to derive the aggregated variables.
- Parameters:
eventVariableNames- The names of all the event variables that were used to derive the aggregated variables.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
relativeImpact
AggregatedVariablesImpactExplanation.Builder relativeImpact(String relativeImpact)
The relative impact of the aggregated variables in terms of magnitude on the prediction scores.
- Parameters:
relativeImpact- The relative impact of the aggregated variables in terms of magnitude on the prediction scores.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
logOddsImpact
AggregatedVariablesImpactExplanation.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 variables drove the risk score up.
-
A negative value indicates that the variables 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 variables drove the risk score up.
-
A negative value indicates that the variables drove the risk score down.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-
-