Interface RuleConfig.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<RuleConfig.Builder,RuleConfig>,SdkBuilder<RuleConfig.Builder,RuleConfig>,SdkPojo
- Enclosing class:
- RuleConfig
public static interface RuleConfig.Builder extends SdkPojo, CopyableBuilder<RuleConfig.Builder,RuleConfig>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description RuleConfig.Builderinverted(Boolean inverted)Logical negation of the rule.RuleConfig.Builderthreshold(Integer threshold)The value of N, when you specify an ATLEAST rule type.RuleConfig.Buildertype(String type)A rule can be one of the following: ATLEAST, AND, or OR.RuleConfig.Buildertype(RuleType type)A rule can be one of the following: ATLEAST, AND, or OR.-
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
-
inverted
RuleConfig.Builder inverted(Boolean inverted)
Logical negation of the rule. If the rule would usually evaluate true, it's evaluated as false, and vice versa.
- Parameters:
inverted- Logical negation of the rule. If the rule would usually evaluate true, it's evaluated as false, and vice versa.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
threshold
RuleConfig.Builder threshold(Integer threshold)
The value of N, when you specify an ATLEAST rule type. That is, Threshold is the number of controls that must be set when you specify an ATLEAST type.
- Parameters:
threshold- The value of N, when you specify an ATLEAST rule type. That is, Threshold is the number of controls that must be set when you specify an ATLEAST type.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
type
RuleConfig.Builder type(String type)
A rule can be one of the following: ATLEAST, AND, or OR.
-
type
RuleConfig.Builder type(RuleType type)
A rule can be one of the following: ATLEAST, AND, or OR.
-
-