Interface QuickResponseQueryField.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<QuickResponseQueryField.Builder,QuickResponseQueryField>,SdkBuilder<QuickResponseQueryField.Builder,QuickResponseQueryField>,SdkPojo
- Enclosing class:
- QuickResponseQueryField
public static interface QuickResponseQueryField.Builder extends SdkPojo, CopyableBuilder<QuickResponseQueryField.Builder,QuickResponseQueryField>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description QuickResponseQueryField.BuilderallowFuzziness(Boolean allowFuzziness)Whether the query expects only exact matches on the attribute field values.QuickResponseQueryField.Buildername(String name)The name of the attribute to query the quick responses by.QuickResponseQueryField.Builderoperator(String operator)The operator to use for matching attribute field values in the query.QuickResponseQueryField.Builderoperator(QuickResponseQueryOperator operator)The operator to use for matching attribute field values in the query.QuickResponseQueryField.Builderpriority(String priority)The importance of the attribute field when calculating query result relevancy scores.QuickResponseQueryField.Builderpriority(Priority priority)The importance of the attribute field when calculating query result relevancy scores.QuickResponseQueryField.Buildervalues(String... values)The values of the attribute to query the quick responses by.QuickResponseQueryField.Buildervalues(Collection<String> values)The values of the attribute to query the quick responses 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
-
allowFuzziness
QuickResponseQueryField.Builder allowFuzziness(Boolean allowFuzziness)
Whether the query expects only exact matches on the attribute field values. The results of the query will only include exact matches if this parameter is set to false.
- Parameters:
allowFuzziness- Whether the query expects only exact matches on the attribute field values. The results of the query will only include exact matches if this parameter is set to false.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
name
QuickResponseQueryField.Builder name(String name)
The name of the attribute to query the quick responses by.
- Parameters:
name- The name of the attribute to query the quick responses by.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
operator
QuickResponseQueryField.Builder operator(String operator)
The operator to use for matching attribute field values in the query.
- Parameters:
operator- The operator to use for matching attribute field values in the query.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
QuickResponseQueryOperator,QuickResponseQueryOperator
-
operator
QuickResponseQueryField.Builder operator(QuickResponseQueryOperator operator)
The operator to use for matching attribute field values in the query.
- Parameters:
operator- The operator to use for matching attribute field values in the query.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
QuickResponseQueryOperator,QuickResponseQueryOperator
-
priority
QuickResponseQueryField.Builder priority(String priority)
The importance of the attribute field when calculating query result relevancy scores. The value set for this parameter affects the ordering of search results.
- Parameters:
priority- The importance of the attribute field when calculating query result relevancy scores. The value set for this parameter affects the ordering of search results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
Priority,Priority
-
priority
QuickResponseQueryField.Builder priority(Priority priority)
The importance of the attribute field when calculating query result relevancy scores. The value set for this parameter affects the ordering of search results.
- Parameters:
priority- The importance of the attribute field when calculating query result relevancy scores. The value set for this parameter affects the ordering of search results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
Priority,Priority
-
values
QuickResponseQueryField.Builder values(Collection<String> values)
The values of the attribute to query the quick responses by.
- Parameters:
values- The values of the attribute to query the quick responses by.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
values
QuickResponseQueryField.Builder values(String... values)
The values of the attribute to query the quick responses by.
- Parameters:
values- The values of the attribute to query the quick responses by.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-