Interface Criterion.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<Criterion.Builder,Criterion>,SdkBuilder<Criterion.Builder,Criterion>,SdkPojo
- Enclosing class:
- Criterion
public static interface Criterion.Builder extends SdkPojo, CopyableBuilder<Criterion.Builder,Criterion>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Criterion.Buildercontains(String... contains)A "contains" operator to match for the filter used to create the rule.Criterion.Buildercontains(Collection<String> contains)A "contains" operator to match for the filter used to create the rule.Criterion.Buildereq(String... eq)An "equals" operator to match for the filter used to create the rule.Criterion.Buildereq(Collection<String> eq)An "equals" operator to match for the filter used to create the rule.Criterion.Builderexists(Boolean exists)An "exists" operator to match for the filter used to create the rule.Criterion.Builderneq(String... neq)A "not equals" operator to match for the filter used to create the rule.Criterion.Builderneq(Collection<String> neq)A "not equals" operator to match for the filter used to create the rule.-
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
-
eq
Criterion.Builder eq(Collection<String> eq)
An "equals" operator to match for the filter used to create the rule.
- Parameters:
eq- An "equals" operator to match for the filter used to create the rule.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
eq
Criterion.Builder eq(String... eq)
An "equals" operator to match for the filter used to create the rule.
- Parameters:
eq- An "equals" operator to match for the filter used to create the rule.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
neq
Criterion.Builder neq(Collection<String> neq)
A "not equals" operator to match for the filter used to create the rule.
- Parameters:
neq- A "not equals" operator to match for the filter used to create the rule.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
neq
Criterion.Builder neq(String... neq)
A "not equals" operator to match for the filter used to create the rule.
- Parameters:
neq- A "not equals" operator to match for the filter used to create the rule.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
contains
Criterion.Builder contains(Collection<String> contains)
A "contains" operator to match for the filter used to create the rule.
- Parameters:
contains- A "contains" operator to match for the filter used to create the rule.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
contains
Criterion.Builder contains(String... contains)
A "contains" operator to match for the filter used to create the rule.
- Parameters:
contains- A "contains" operator to match for the filter used to create the rule.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
exists
Criterion.Builder exists(Boolean exists)
An "exists" operator to match for the filter used to create the rule.
- Parameters:
exists- An "exists" operator to match for the filter used to create the rule.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-