Interface SearchableContactAttributes.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<SearchableContactAttributes.Builder,SearchableContactAttributes>,SdkBuilder<SearchableContactAttributes.Builder,SearchableContactAttributes>,SdkPojo
- Enclosing class:
- SearchableContactAttributes
public static interface SearchableContactAttributes.Builder extends SdkPojo, CopyableBuilder<SearchableContactAttributes.Builder,SearchableContactAttributes>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SearchableContactAttributes.Buildercriteria(Collection<SearchableContactAttributesCriteria> criteria)The list of criteria based on user-defined contact attributes that are configured for contact search.SearchableContactAttributes.Buildercriteria(Consumer<SearchableContactAttributesCriteria.Builder>... criteria)The list of criteria based on user-defined contact attributes that are configured for contact search.SearchableContactAttributes.Buildercriteria(SearchableContactAttributesCriteria... criteria)The list of criteria based on user-defined contact attributes that are configured for contact search.SearchableContactAttributes.BuildermatchType(String matchType)The match type combining search criteria using multiple searchable contact attributes.SearchableContactAttributes.BuildermatchType(SearchContactsMatchType matchType)The match type combining search criteria using multiple searchable contact attributes.-
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
-
criteria
SearchableContactAttributes.Builder criteria(Collection<SearchableContactAttributesCriteria> criteria)
The list of criteria based on user-defined contact attributes that are configured for contact search.
- Parameters:
criteria- The list of criteria based on user-defined contact attributes that are configured for contact search.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
criteria
SearchableContactAttributes.Builder criteria(SearchableContactAttributesCriteria... criteria)
The list of criteria based on user-defined contact attributes that are configured for contact search.
- Parameters:
criteria- The list of criteria based on user-defined contact attributes that are configured for contact search.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
criteria
SearchableContactAttributes.Builder criteria(Consumer<SearchableContactAttributesCriteria.Builder>... criteria)
The list of criteria based on user-defined contact attributes that are configured for contact search.
This is a convenience method that creates an instance of theSearchableContactAttributesCriteria.Builderavoiding the need to create one manually viaSearchableContactAttributesCriteria.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#criteria(List.) - Parameters:
criteria- a consumer that will call methods onSearchableContactAttributesCriteria.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#criteria(java.util.Collection)
-
matchType
SearchableContactAttributes.Builder matchType(String matchType)
The match type combining search criteria using multiple searchable contact attributes.
- Parameters:
matchType- The match type combining search criteria using multiple searchable contact attributes.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
SearchContactsMatchType,SearchContactsMatchType
-
matchType
SearchableContactAttributes.Builder matchType(SearchContactsMatchType matchType)
The match type combining search criteria using multiple searchable contact attributes.
- Parameters:
matchType- The match type combining search criteria using multiple searchable contact attributes.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
SearchContactsMatchType,SearchContactsMatchType
-
-