Interface SearchDataSetsRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder
,Buildable
,CopyableBuilder<SearchDataSetsRequest.Builder,SearchDataSetsRequest>
,QuickSightRequest.Builder
,SdkBuilder<SearchDataSetsRequest.Builder,SearchDataSetsRequest>
,SdkPojo
,SdkRequest.Builder
- Enclosing class:
- SearchDataSetsRequest
public static interface SearchDataSetsRequest.Builder extends QuickSightRequest.Builder, SdkPojo, CopyableBuilder<SearchDataSetsRequest.Builder,SearchDataSetsRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SearchDataSetsRequest.Builder
awsAccountId(String awsAccountId)
The Amazon Web Services account ID.SearchDataSetsRequest.Builder
filters(Collection<DataSetSearchFilter> filters)
The filters to apply to the search.SearchDataSetsRequest.Builder
filters(Consumer<DataSetSearchFilter.Builder>... filters)
The filters to apply to the search.SearchDataSetsRequest.Builder
filters(DataSetSearchFilter... filters)
The filters to apply to the search.SearchDataSetsRequest.Builder
maxResults(Integer maxResults)
The maximum number of results to be returned per request.SearchDataSetsRequest.Builder
nextToken(String nextToken)
A pagination token that can be used in a subsequent request.SearchDataSetsRequest.Builder
overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
SearchDataSetsRequest.Builder
overrideConfiguration(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, sdkFields
-
-
-
-
Method Detail
-
awsAccountId
SearchDataSetsRequest.Builder awsAccountId(String awsAccountId)
The Amazon Web Services account ID.
- Parameters:
awsAccountId
- The Amazon Web Services account ID.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
filters
SearchDataSetsRequest.Builder filters(Collection<DataSetSearchFilter> filters)
The filters to apply to the search.
- Parameters:
filters
- The filters to apply to the search.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
filters
SearchDataSetsRequest.Builder filters(DataSetSearchFilter... filters)
The filters to apply to the search.
- Parameters:
filters
- The filters to apply to the search.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
filters
SearchDataSetsRequest.Builder filters(Consumer<DataSetSearchFilter.Builder>... filters)
The filters to apply to the search.
This is a convenience method that creates an instance of theDataSetSearchFilter.Builder
avoiding the need to create one manually viaDataSetSearchFilter.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed to#filters(List
.) - Parameters:
filters
- a consumer that will call methods onDataSetSearchFilter.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#filters(java.util.Collection
)
-
nextToken
SearchDataSetsRequest.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
SearchDataSetsRequest.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
SearchDataSetsRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
-
overrideConfiguration
SearchDataSetsRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
-
-