Interface SearchAnalysesRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CopyableBuilder<SearchAnalysesRequest.Builder,SearchAnalysesRequest>,QuickSightRequest.Builder,SdkBuilder<SearchAnalysesRequest.Builder,SearchAnalysesRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- SearchAnalysesRequest
@Mutable @NotThreadSafe public static interface SearchAnalysesRequest.Builder extends QuickSightRequest.Builder, SdkPojo, CopyableBuilder<SearchAnalysesRequest.Builder,SearchAnalysesRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SearchAnalysesRequest.BuilderawsAccountId(String awsAccountId)The ID of the Amazon Web Services account that contains the analyses that you're searching for.SearchAnalysesRequest.Builderfilters(Collection<AnalysisSearchFilter> filters)The structure for the search filters that you want to apply to your search.SearchAnalysesRequest.Builderfilters(Consumer<AnalysisSearchFilter.Builder>... filters)The structure for the search filters that you want to apply to your search.SearchAnalysesRequest.Builderfilters(AnalysisSearchFilter... filters)The structure for the search filters that you want to apply to your search.SearchAnalysesRequest.BuildermaxResults(Integer maxResults)The maximum number of results to return.SearchAnalysesRequest.BuildernextToken(String nextToken)A pagination token that can be used in a subsequent request.SearchAnalysesRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)SearchAnalysesRequest.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
SearchAnalysesRequest.Builder awsAccountId(String awsAccountId)
The ID of the Amazon Web Services account that contains the analyses that you're searching for.
- Parameters:
awsAccountId- The ID of the Amazon Web Services account that contains the analyses that you're searching for.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
filters
SearchAnalysesRequest.Builder filters(Collection<AnalysisSearchFilter> filters)
The structure for the search filters that you want to apply to your search.
- Parameters:
filters- The structure for the search filters that you want to apply to your search.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
filters
SearchAnalysesRequest.Builder filters(AnalysisSearchFilter... filters)
The structure for the search filters that you want to apply to your search.
- Parameters:
filters- The structure for the search filters that you want to apply to your search.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
filters
SearchAnalysesRequest.Builder filters(Consumer<AnalysisSearchFilter.Builder>... filters)
The structure for the search filters that you want to apply to your search.
This is a convenience method that creates an instance of theAnalysisSearchFilter.Builderavoiding the need to create one manually viaAnalysisSearchFilter.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 onAnalysisSearchFilter.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#filters(java.util.Collection)
-
nextToken
SearchAnalysesRequest.Builder nextToken(String nextToken)
A pagination token that can be used in a subsequent request.
- Parameters:
nextToken- A pagination token that can be used in a subsequent request.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
maxResults
SearchAnalysesRequest.Builder maxResults(Integer maxResults)
The maximum number of results to return.
- Parameters:
maxResults- The maximum number of results to return.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
overrideConfiguration
SearchAnalysesRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
SearchAnalysesRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-