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