Interface SearchFoldersRequest.Builder
- All Superinterfaces:
AwsRequest.Builder
,Buildable
,CopyableBuilder<SearchFoldersRequest.Builder,
,SearchFoldersRequest> QuickSightRequest.Builder
,SdkBuilder<SearchFoldersRequest.Builder,
,SearchFoldersRequest> SdkPojo
,SdkRequest.Builder
- Enclosing class:
SearchFoldersRequest
-
Method Summary
Modifier and TypeMethodDescriptionawsAccountId
(String awsAccountId) The ID for the Amazon Web Services account that contains the folder.filters
(Collection<FolderSearchFilter> filters) The filters to apply to the search.filters
(Consumer<FolderSearchFilter.Builder>... filters) The filters to apply to the search.filters
(FolderSearchFilter... filters) The filters to apply to the search.maxResults
(Integer maxResults) The maximum number of results to be returned per request.The token for the next set of results, or null if there are no more results.overrideConfiguration
(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer) Add an optional request override configuration.overrideConfiguration
(AwsRequestOverrideConfiguration overrideConfiguration) Add an optional request override configuration.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 Details
-
awsAccountId
The ID for the Amazon Web Services account that contains the folder.
- Parameters:
awsAccountId
- The ID for the Amazon Web Services account that contains the folder.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
filters
The filters to apply to the search. Currently, you can search only by the parent folder ARN. For example,
"Filters": [ { "Name": "PARENT_FOLDER_ARN", "Operator": "StringEquals", "Value": "arn:aws:quicksight:us-east-1:1:folder/folderId" } ]
.- Parameters:
filters
- The filters to apply to the search. Currently, you can search only by the parent folder ARN. For example,"Filters": [ { "Name": "PARENT_FOLDER_ARN", "Operator": "StringEquals", "Value": "arn:aws:quicksight:us-east-1:1:folder/folderId" } ]
.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
filters
The filters to apply to the search. Currently, you can search only by the parent folder ARN. For example,
"Filters": [ { "Name": "PARENT_FOLDER_ARN", "Operator": "StringEquals", "Value": "arn:aws:quicksight:us-east-1:1:folder/folderId" } ]
.- Parameters:
filters
- The filters to apply to the search. Currently, you can search only by the parent folder ARN. For example,"Filters": [ { "Name": "PARENT_FOLDER_ARN", "Operator": "StringEquals", "Value": "arn:aws:quicksight:us-east-1:1:folder/folderId" } ]
.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
filters
The filters to apply to the search. Currently, you can search only by the parent folder ARN. For example,
This is a convenience method that creates an instance of the"Filters": [ { "Name": "PARENT_FOLDER_ARN", "Operator": "StringEquals", "Value": "arn:aws:quicksight:us-east-1:1:folder/folderId" } ]
.FolderSearchFilter.Builder
avoiding the need to create one manually viaFolderSearchFilter.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed tofilters(List<FolderSearchFilter>)
.- Parameters:
filters
- a consumer that will call methods onFolderSearchFilter.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
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
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
SearchFoldersRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration) Description copied from interface:AwsRequest.Builder
Add an optional request override configuration.- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
- Parameters:
overrideConfiguration
- The override configuration.- Returns:
- This object for method chaining.
-
overrideConfiguration
SearchFoldersRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer) Description copied from interface:AwsRequest.Builder
Add an optional request override configuration.- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
- Parameters:
builderConsumer
- AConsumer
to which an emptyAwsRequestOverrideConfiguration.Builder
will be given.- Returns:
- This object for method chaining.
-