Interface ArchiveStringExpression.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ArchiveStringExpression.Builder,ArchiveStringExpression>,SdkBuilder<ArchiveStringExpression.Builder,ArchiveStringExpression>,SdkPojo
- Enclosing class:
- ArchiveStringExpression
public static interface ArchiveStringExpression.Builder extends SdkPojo, CopyableBuilder<ArchiveStringExpression.Builder,ArchiveStringExpression>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default ArchiveStringExpression.Builderevaluate(Consumer<ArchiveStringToEvaluate.Builder> evaluate)The attribute of the email to evaluate.ArchiveStringExpression.Builderevaluate(ArchiveStringToEvaluate evaluate)The attribute of the email to evaluate.ArchiveStringExpression.Builderoperator(String operator)The operator to use when evaluating the string values.ArchiveStringExpression.Builderoperator(ArchiveStringOperator operator)The operator to use when evaluating the string values.ArchiveStringExpression.Buildervalues(String... values)The list of string values to evaluate the email attribute against.ArchiveStringExpression.Buildervalues(Collection<String> values)The list of string values to evaluate the email attribute against.-
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
-
evaluate
ArchiveStringExpression.Builder evaluate(ArchiveStringToEvaluate evaluate)
The attribute of the email to evaluate.
- Parameters:
evaluate- The attribute of the email to evaluate.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
evaluate
default ArchiveStringExpression.Builder evaluate(Consumer<ArchiveStringToEvaluate.Builder> evaluate)
The attribute of the email to evaluate.
This is a convenience method that creates an instance of theArchiveStringToEvaluate.Builderavoiding the need to create one manually viaArchiveStringToEvaluate.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toevaluate(ArchiveStringToEvaluate).- Parameters:
evaluate- a consumer that will call methods onArchiveStringToEvaluate.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
evaluate(ArchiveStringToEvaluate)
-
operator
ArchiveStringExpression.Builder operator(String operator)
The operator to use when evaluating the string values.
- Parameters:
operator- The operator to use when evaluating the string values.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ArchiveStringOperator,ArchiveStringOperator
-
operator
ArchiveStringExpression.Builder operator(ArchiveStringOperator operator)
The operator to use when evaluating the string values.
- Parameters:
operator- The operator to use when evaluating the string values.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ArchiveStringOperator,ArchiveStringOperator
-
values
ArchiveStringExpression.Builder values(Collection<String> values)
The list of string values to evaluate the email attribute against.
- Parameters:
values- The list of string values to evaluate the email attribute against.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
values
ArchiveStringExpression.Builder values(String... values)
The list of string values to evaluate the email attribute against.
- Parameters:
values- The list of string values to evaluate the email attribute against.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-