Interface TopicSearchFilter.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<TopicSearchFilter.Builder,TopicSearchFilter>,SdkBuilder<TopicSearchFilter.Builder,TopicSearchFilter>,SdkPojo
- Enclosing class:
- TopicSearchFilter
@Mutable @NotThreadSafe public static interface TopicSearchFilter.Builder extends SdkPojo, CopyableBuilder<TopicSearchFilter.Builder,TopicSearchFilter>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TopicSearchFilter.Buildername(String name)The name of the topic search filter.TopicSearchFilter.Buildername(TopicFilterAttribute name)The name of the topic search filter.TopicSearchFilter.Builderoperator(String operator)The operator like equals or like.TopicSearchFilter.Builderoperator(TopicFilterOperator operator)The operator like equals or like.TopicSearchFilter.Buildervalue(String value)The value of the topic search filter.-
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
-
operator
TopicSearchFilter.Builder operator(String operator)
The operator like equals or like.
- Parameters:
operator- The operator like equals or like.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
TopicFilterOperator,TopicFilterOperator
-
operator
TopicSearchFilter.Builder operator(TopicFilterOperator operator)
The operator like equals or like.
- Parameters:
operator- The operator like equals or like.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
TopicFilterOperator,TopicFilterOperator
-
name
TopicSearchFilter.Builder name(String name)
The name of the topic search filter.
- Parameters:
name- The name of the topic search filter.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
TopicFilterAttribute,TopicFilterAttribute
-
name
TopicSearchFilter.Builder name(TopicFilterAttribute name)
The name of the topic search filter.
- Parameters:
name- The name of the topic search filter.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
TopicFilterAttribute,TopicFilterAttribute
-
value
TopicSearchFilter.Builder value(String value)
The value of the topic search filter.
- Parameters:
value- The value of the topic search filter.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-