Interface FilterCondition.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<FilterCondition.Builder,FilterCondition>,SdkBuilder<FilterCondition.Builder,FilterCondition>,SdkPojo
- Enclosing class:
- FilterCondition
public static interface FilterCondition.Builder extends SdkPojo, CopyableBuilder<FilterCondition.Builder,FilterCondition>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description FilterCondition.BuilderequalsValue(String equalsValue)Represents an equal condition to be applied to a single field when querying for scan entries.FilterCondition.BuildergreaterThan(Long greaterThan)Represents a greater than condition to be applied to a single field when querying for scan entries.FilterCondition.BuilderlessThan(Long lessThan)Represents a less than condition to be applied to a single field when querying for scan entries.-
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
-
equalsValue
FilterCondition.Builder equalsValue(String equalsValue)
Represents an equal condition to be applied to a single field when querying for scan entries.
- Parameters:
equalsValue- Represents an equal condition to be applied to a single field when querying for scan entries.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
greaterThan
FilterCondition.Builder greaterThan(Long greaterThan)
Represents a greater than condition to be applied to a single field when querying for scan entries.
- Parameters:
greaterThan- Represents a greater than condition to be applied to a single field when querying for scan entries.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
lessThan
FilterCondition.Builder lessThan(Long lessThan)
Represents a less than condition to be applied to a single field when querying for scan entries.
- Parameters:
lessThan- Represents a less than condition to be applied to a single field when querying for scan entries.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-