Interface SearchTopicsRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CopyableBuilder<SearchTopicsRequest.Builder,SearchTopicsRequest>,QuickSightRequest.Builder,SdkBuilder<SearchTopicsRequest.Builder,SearchTopicsRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- SearchTopicsRequest
@Mutable @NotThreadSafe public static interface SearchTopicsRequest.Builder extends QuickSightRequest.Builder, SdkPojo, CopyableBuilder<SearchTopicsRequest.Builder,SearchTopicsRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SearchTopicsRequest.BuilderawsAccountId(String awsAccountId)The ID of the Amazon Web Services account that contains the topic that you want to find.SearchTopicsRequest.Builderfilters(Collection<TopicSearchFilter> filters)The filters that you want to use to search for the topic.SearchTopicsRequest.Builderfilters(Consumer<TopicSearchFilter.Builder>... filters)The filters that you want to use to search for the topic.SearchTopicsRequest.Builderfilters(TopicSearchFilter... filters)The filters that you want to use to search for the topic.SearchTopicsRequest.BuildermaxResults(Integer maxResults)The maximum number of results to be returned per request.SearchTopicsRequest.BuildernextToken(String nextToken)The token for the next set of results, or null if there are no more results.SearchTopicsRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)SearchTopicsRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)-
Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.quicksight.model.QuickSightRequest.Builder
build
-
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
-
awsAccountId
SearchTopicsRequest.Builder awsAccountId(String awsAccountId)
The ID of the Amazon Web Services account that contains the topic that you want to find.
- Parameters:
awsAccountId- The ID of the Amazon Web Services account that contains the topic that you want to find.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
filters
SearchTopicsRequest.Builder filters(Collection<TopicSearchFilter> filters)
The filters that you want to use to search for the topic.
- Parameters:
filters- The filters that you want to use to search for the topic.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
filters
SearchTopicsRequest.Builder filters(TopicSearchFilter... filters)
The filters that you want to use to search for the topic.
- Parameters:
filters- The filters that you want to use to search for the topic.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
filters
SearchTopicsRequest.Builder filters(Consumer<TopicSearchFilter.Builder>... filters)
The filters that you want to use to search for the topic.
This is a convenience method that creates an instance of theTopicSearchFilter.Builderavoiding the need to create one manually viaTopicSearchFilter.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#filters(List.) - Parameters:
filters- a consumer that will call methods onTopicSearchFilter.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#filters(java.util.Collection)
-
nextToken
SearchTopicsRequest.Builder nextToken(String nextToken)
The token for the next set of results, or null if there are no more results.
- Parameters:
nextToken- The token for the next set of results, or null if there are no more results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
maxResults
SearchTopicsRequest.Builder maxResults(Integer maxResults)
The maximum number of results to be returned per request.
- Parameters:
maxResults- The maximum number of results to be returned per request.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
overrideConfiguration
SearchTopicsRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
SearchTopicsRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-