Interface IngressStringExpression.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<IngressStringExpression.Builder,IngressStringExpression>,SdkBuilder<IngressStringExpression.Builder,IngressStringExpression>,SdkPojo
- Enclosing class:
- IngressStringExpression
public static interface IngressStringExpression.Builder extends SdkPojo, CopyableBuilder<IngressStringExpression.Builder,IngressStringExpression>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default IngressStringExpression.Builderevaluate(Consumer<IngressStringToEvaluate.Builder> evaluate)The left hand side argument of a string condition expression.IngressStringExpression.Builderevaluate(IngressStringToEvaluate evaluate)The left hand side argument of a string condition expression.IngressStringExpression.Builderoperator(String operator)The matching operator for a string condition expression.IngressStringExpression.Builderoperator(IngressStringOperator operator)The matching operator for a string condition expression.IngressStringExpression.Buildervalues(String... values)The right hand side argument of a string condition expression.IngressStringExpression.Buildervalues(Collection<String> values)The right hand side argument of a string condition 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, sdkFields
-
-
-
-
Method Detail
-
evaluate
IngressStringExpression.Builder evaluate(IngressStringToEvaluate evaluate)
The left hand side argument of a string condition expression.
- Parameters:
evaluate- The left hand side argument of a string condition expression.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
evaluate
default IngressStringExpression.Builder evaluate(Consumer<IngressStringToEvaluate.Builder> evaluate)
The left hand side argument of a string condition expression.
This is a convenience method that creates an instance of theIngressStringToEvaluate.Builderavoiding the need to create one manually viaIngressStringToEvaluate.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toevaluate(IngressStringToEvaluate).- Parameters:
evaluate- a consumer that will call methods onIngressStringToEvaluate.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
evaluate(IngressStringToEvaluate)
-
operator
IngressStringExpression.Builder operator(String operator)
The matching operator for a string condition expression.
- Parameters:
operator- The matching operator for a string condition expression.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
IngressStringOperator,IngressStringOperator
-
operator
IngressStringExpression.Builder operator(IngressStringOperator operator)
The matching operator for a string condition expression.
- Parameters:
operator- The matching operator for a string condition expression.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
IngressStringOperator,IngressStringOperator
-
values
IngressStringExpression.Builder values(Collection<String> values)
The right hand side argument of a string condition expression.
- Parameters:
values- The right hand side argument of a string condition expression.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
values
IngressStringExpression.Builder values(String... values)
The right hand side argument of a string condition expression.
- Parameters:
values- The right hand side argument of a string condition expression.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-