Interface SearchContentRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CopyableBuilder<SearchContentRequest.Builder,SearchContentRequest>,SdkBuilder<SearchContentRequest.Builder,SearchContentRequest>,SdkPojo,SdkRequest.Builder,WisdomRequest.Builder
- Enclosing class:
- SearchContentRequest
public static interface SearchContentRequest.Builder extends WisdomRequest.Builder, SdkPojo, CopyableBuilder<SearchContentRequest.Builder,SearchContentRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description SearchContentRequest.BuilderknowledgeBaseId(String knowledgeBaseId)The identifier of the knowledge base.SearchContentRequest.BuildermaxResults(Integer maxResults)The maximum number of results to return per page.SearchContentRequest.BuildernextToken(String nextToken)The token for the next set of results.SearchContentRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)SearchContentRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)default SearchContentRequest.BuildersearchExpression(Consumer<SearchExpression.Builder> searchExpression)The search expression to filter results.SearchContentRequest.BuildersearchExpression(SearchExpression searchExpression)The search expression to filter results.-
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.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
Methods inherited from interface software.amazon.awssdk.services.wisdom.model.WisdomRequest.Builder
build
-
-
-
-
Method Detail
-
knowledgeBaseId
SearchContentRequest.Builder knowledgeBaseId(String knowledgeBaseId)
The identifier of the knowledge base. Can be either the ID or the ARN. URLs cannot contain the ARN.
- Parameters:
knowledgeBaseId- The identifier of the knowledge base. Can be either the ID or the ARN. URLs cannot contain the ARN.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
maxResults
SearchContentRequest.Builder maxResults(Integer maxResults)
The maximum number of results to return per page.
- Parameters:
maxResults- The maximum number of results to return per page.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
nextToken
SearchContentRequest.Builder nextToken(String nextToken)
The token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results.
- Parameters:
nextToken- The token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
searchExpression
SearchContentRequest.Builder searchExpression(SearchExpression searchExpression)
The search expression to filter results.
- Parameters:
searchExpression- The search expression to filter results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
searchExpression
default SearchContentRequest.Builder searchExpression(Consumer<SearchExpression.Builder> searchExpression)
The search expression to filter results.
This is a convenience method that creates an instance of theSearchExpression.Builderavoiding the need to create one manually viaSearchExpression.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tosearchExpression(SearchExpression).- Parameters:
searchExpression- a consumer that will call methods onSearchExpression.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
searchExpression(SearchExpression)
-
overrideConfiguration
SearchContentRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
SearchContentRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-