Interface FilterValue.Builder
- All Superinterfaces:
Buildable,CopyableBuilder<FilterValue.Builder,,FilterValue> SdkBuilder<FilterValue.Builder,,FilterValue> SdkPojo
- Enclosing class:
- FilterValue
@Mutable
@NotThreadSafe
public static interface FilterValue.Builder
extends SdkPojo, CopyableBuilder<FilterValue.Builder,FilterValue>
-
Method Summary
Modifier and TypeMethodDescriptionbooleanValue(Boolean booleanValue) A boolean value for true/false filtering conditions.doubleValue(Double doubleValue) A numeric value for numerical filtering and comparisons.stringValue(String stringValue) A string value for text-based filtering.Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copyMethods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, buildMethods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
Method Details
-
stringValue
A string value for text-based filtering.
- Parameters:
stringValue- A string value for text-based filtering.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
doubleValue
A numeric value for numerical filtering and comparisons.
- Parameters:
doubleValue- A numeric value for numerical filtering and comparisons.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
booleanValue
A boolean value for true/false filtering conditions.
- Parameters:
booleanValue- A boolean value for true/false filtering conditions.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-