Interface SearchField.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<SearchField.Builder,SearchField>,SdkBuilder<SearchField.Builder,SearchField>,SdkPojo
- Enclosing class:
- SearchField
public static interface SearchField.Builder extends SdkPojo, CopyableBuilder<SearchField.Builder,SearchField>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SearchField.Builderkey(String key)Anenumvalue that indicates the key to search the channel on.SearchField.Builderkey(SearchFieldKey key)Anenumvalue that indicates the key to search the channel on.SearchField.Builderoperator(String operator)The operator used to compare field values, currentlyEQUALSorINCLUDES.SearchField.Builderoperator(SearchFieldOperator operator)The operator used to compare field values, currentlyEQUALSorINCLUDES.SearchField.Buildervalues(String... values)The values that you want to search for, a list of strings.SearchField.Buildervalues(Collection<String> values)The values that you want to search for, a list of strings.-
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
-
key
SearchField.Builder key(String key)
An
enumvalue that indicates the key to search the channel on.MEMBERSallows you to search channels based on memberships. You can use it with theEQUALSoperator to get channels whose memberships are equal to the specified values, and with theINCLUDESoperator to get channels whose memberships include the specified values.- Parameters:
key- Anenumvalue that indicates the key to search the channel on.MEMBERSallows you to search channels based on memberships. You can use it with theEQUALSoperator to get channels whose memberships are equal to the specified values, and with theINCLUDESoperator to get channels whose memberships include the specified values.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
SearchFieldKey,SearchFieldKey
-
key
SearchField.Builder key(SearchFieldKey key)
An
enumvalue that indicates the key to search the channel on.MEMBERSallows you to search channels based on memberships. You can use it with theEQUALSoperator to get channels whose memberships are equal to the specified values, and with theINCLUDESoperator to get channels whose memberships include the specified values.- Parameters:
key- Anenumvalue that indicates the key to search the channel on.MEMBERSallows you to search channels based on memberships. You can use it with theEQUALSoperator to get channels whose memberships are equal to the specified values, and with theINCLUDESoperator to get channels whose memberships include the specified values.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
SearchFieldKey,SearchFieldKey
-
values
SearchField.Builder values(Collection<String> values)
The values that you want to search for, a list of strings. The values must be
AppInstanceUserArnsspecified as a list of strings.This operation isn't supported for
AppInstanceUserswith large number of memberships.- Parameters:
values- The values that you want to search for, a list of strings. The values must beAppInstanceUserArnsspecified as a list of strings.This operation isn't supported for
AppInstanceUserswith large number of memberships.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
values
SearchField.Builder values(String... values)
The values that you want to search for, a list of strings. The values must be
AppInstanceUserArnsspecified as a list of strings.This operation isn't supported for
AppInstanceUserswith large number of memberships.- Parameters:
values- The values that you want to search for, a list of strings. The values must beAppInstanceUserArnsspecified as a list of strings.This operation isn't supported for
AppInstanceUserswith large number of memberships.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
operator
SearchField.Builder operator(String operator)
The operator used to compare field values, currently
EQUALSorINCLUDES. Use theEQUALSoperator to find channels whose memberships equal the specified values. Use theINCLUDESoperator to find channels whose memberships include the specified values.- Parameters:
operator- The operator used to compare field values, currentlyEQUALSorINCLUDES. Use theEQUALSoperator to find channels whose memberships equal the specified values. Use theINCLUDESoperator to find channels whose memberships include the specified values.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
SearchFieldOperator,SearchFieldOperator
-
operator
SearchField.Builder operator(SearchFieldOperator operator)
The operator used to compare field values, currently
EQUALSorINCLUDES. Use theEQUALSoperator to find channels whose memberships equal the specified values. Use theINCLUDESoperator to find channels whose memberships include the specified values.- Parameters:
operator- The operator used to compare field values, currentlyEQUALSorINCLUDES. Use theEQUALSoperator to find channels whose memberships equal the specified values. Use theINCLUDESoperator to find channels whose memberships include the specified values.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
SearchFieldOperator,SearchFieldOperator
-
-