Interface QuickResponseFilterField.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<QuickResponseFilterField.Builder,QuickResponseFilterField>,SdkBuilder<QuickResponseFilterField.Builder,QuickResponseFilterField>,SdkPojo
- Enclosing class:
- QuickResponseFilterField
public static interface QuickResponseFilterField.Builder extends SdkPojo, CopyableBuilder<QuickResponseFilterField.Builder,QuickResponseFilterField>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description QuickResponseFilterField.BuilderincludeNoExistence(Boolean includeNoExistence)Whether to treat null value as a match for the attribute field.QuickResponseFilterField.Buildername(String name)The name of the attribute field to filter the quick responses by.QuickResponseFilterField.Builderoperator(String operator)The operator to use for filtering.QuickResponseFilterField.Builderoperator(QuickResponseFilterOperator operator)The operator to use for filtering.QuickResponseFilterField.Buildervalues(String... values)The values of attribute field to filter the quick response by.QuickResponseFilterField.Buildervalues(Collection<String> values)The values of attribute field to filter the quick response by.-
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
-
includeNoExistence
QuickResponseFilterField.Builder includeNoExistence(Boolean includeNoExistence)
Whether to treat null value as a match for the attribute field.
- Parameters:
includeNoExistence- Whether to treat null value as a match for the attribute field.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
name
QuickResponseFilterField.Builder name(String name)
The name of the attribute field to filter the quick responses by.
- Parameters:
name- The name of the attribute field to filter the quick responses by.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
operator
QuickResponseFilterField.Builder operator(String operator)
The operator to use for filtering.
- Parameters:
operator- The operator to use for filtering.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
QuickResponseFilterOperator,QuickResponseFilterOperator
-
operator
QuickResponseFilterField.Builder operator(QuickResponseFilterOperator operator)
The operator to use for filtering.
- Parameters:
operator- The operator to use for filtering.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
QuickResponseFilterOperator,QuickResponseFilterOperator
-
values
QuickResponseFilterField.Builder values(Collection<String> values)
The values of attribute field to filter the quick response by.
- Parameters:
values- The values of attribute field to filter the quick response by.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
values
QuickResponseFilterField.Builder values(String... values)
The values of attribute field to filter the quick response by.
- Parameters:
values- The values of attribute field to filter the quick response by.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-