Interface RuleBooleanToEvaluate.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<RuleBooleanToEvaluate.Builder,RuleBooleanToEvaluate>,SdkBuilder<RuleBooleanToEvaluate.Builder,RuleBooleanToEvaluate>,SdkPojo
- Enclosing class:
- RuleBooleanToEvaluate
public static interface RuleBooleanToEvaluate.Builder extends SdkPojo, CopyableBuilder<RuleBooleanToEvaluate.Builder,RuleBooleanToEvaluate>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description RuleBooleanToEvaluate.Builderattribute(String attribute)The boolean type representing the allowed attribute types for an email.RuleBooleanToEvaluate.Builderattribute(RuleBooleanEmailAttribute attribute)The boolean type representing the allowed attribute types for an email.default RuleBooleanToEvaluate.BuilderisInAddressList(Consumer<RuleIsInAddressList.Builder> isInAddressList)The structure representing the address lists and address list attribute that will be used in evaluation of boolean expression.RuleBooleanToEvaluate.BuilderisInAddressList(RuleIsInAddressList isInAddressList)The structure representing the address lists and address list attribute that will be used in evaluation of boolean expression.-
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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
attribute
RuleBooleanToEvaluate.Builder attribute(String attribute)
The boolean type representing the allowed attribute types for an email.
- Parameters:
attribute- The boolean type representing the allowed attribute types for an email.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
RuleBooleanEmailAttribute,RuleBooleanEmailAttribute
-
attribute
RuleBooleanToEvaluate.Builder attribute(RuleBooleanEmailAttribute attribute)
The boolean type representing the allowed attribute types for an email.
- Parameters:
attribute- The boolean type representing the allowed attribute types for an email.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
RuleBooleanEmailAttribute,RuleBooleanEmailAttribute
-
isInAddressList
RuleBooleanToEvaluate.Builder isInAddressList(RuleIsInAddressList isInAddressList)
The structure representing the address lists and address list attribute that will be used in evaluation of boolean expression.
- Parameters:
isInAddressList- The structure representing the address lists and address list attribute that will be used in evaluation of boolean expression.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
isInAddressList
default RuleBooleanToEvaluate.Builder isInAddressList(Consumer<RuleIsInAddressList.Builder> isInAddressList)
The structure representing the address lists and address list attribute that will be used in evaluation of boolean expression.
This is a convenience method that creates an instance of theRuleIsInAddressList.Builderavoiding the need to create one manually viaRuleIsInAddressList.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toisInAddressList(RuleIsInAddressList).- Parameters:
isInAddressList- a consumer that will call methods onRuleIsInAddressList.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
isInAddressList(RuleIsInAddressList)
-
-