Interface MessageTemplateQueryField.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<MessageTemplateQueryField.Builder,MessageTemplateQueryField>,SdkBuilder<MessageTemplateQueryField.Builder,MessageTemplateQueryField>,SdkPojo
- Enclosing class:
- MessageTemplateQueryField
public static interface MessageTemplateQueryField.Builder extends SdkPojo, CopyableBuilder<MessageTemplateQueryField.Builder,MessageTemplateQueryField>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description MessageTemplateQueryField.BuilderallowFuzziness(Boolean allowFuzziness)Whether the query expects only exact matches on the attribute field values.MessageTemplateQueryField.Buildername(String name)The name of the attribute to query the message templates by.MessageTemplateQueryField.Builderoperator(String operator)The operator to use for matching attribute field values in the query.MessageTemplateQueryField.Builderoperator(MessageTemplateQueryOperator operator)The operator to use for matching attribute field values in the query.MessageTemplateQueryField.Builderpriority(String priority)The importance of the attribute field when calculating query result relevancy scores.MessageTemplateQueryField.Builderpriority(Priority priority)The importance of the attribute field when calculating query result relevancy scores.MessageTemplateQueryField.Buildervalues(String... values)The values of the attribute to query the message templates by.MessageTemplateQueryField.Buildervalues(Collection<String> values)The values of the attribute to query the message templates 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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
allowFuzziness
MessageTemplateQueryField.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
MessageTemplateQueryField.Builder name(String name)
The name of the attribute to query the message templates by.
- Parameters:
name- The name of the attribute to query the message templates by.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
operator
MessageTemplateQueryField.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:
MessageTemplateQueryOperator,MessageTemplateQueryOperator
-
operator
MessageTemplateQueryField.Builder operator(MessageTemplateQueryOperator 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:
MessageTemplateQueryOperator,MessageTemplateQueryOperator
-
priority
MessageTemplateQueryField.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
MessageTemplateQueryField.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
MessageTemplateQueryField.Builder values(Collection<String> values)
The values of the attribute to query the message templates by.
- Parameters:
values- The values of the attribute to query the message templates by.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
values
MessageTemplateQueryField.Builder values(String... values)
The values of the attribute to query the message templates by.
- Parameters:
values- The values of the attribute to query the message templates by.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-