Interface RuleResult.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<RuleResult.Builder,RuleResult>,SdkBuilder<RuleResult.Builder,RuleResult>,SdkPojo
- Enclosing class:
- RuleResult
public static interface RuleResult.Builder extends SdkPojo, CopyableBuilder<RuleResult.Builder,RuleResult>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description RuleResult.Builderoutcomes(String... outcomes)The outcomes of the matched rule, based on the rule execution mode.RuleResult.Builderoutcomes(Collection<String> outcomes)The outcomes of the matched rule, based on the rule execution mode.RuleResult.BuilderruleId(String ruleId)The rule ID that was matched, based on the rule execution mode.-
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
-
ruleId
RuleResult.Builder ruleId(String ruleId)
The rule ID that was matched, based on the rule execution mode.
- Parameters:
ruleId- The rule ID that was matched, based on the rule execution mode.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
outcomes
RuleResult.Builder outcomes(Collection<String> outcomes)
The outcomes of the matched rule, based on the rule execution mode.
- Parameters:
outcomes- The outcomes of the matched rule, based on the rule execution mode.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
outcomes
RuleResult.Builder outcomes(String... outcomes)
The outcomes of the matched rule, based on the rule execution mode.
- Parameters:
outcomes- The outcomes of the matched rule, based on the rule execution mode.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-