Interface ListTestSetsRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CopyableBuilder<ListTestSetsRequest.Builder,ListTestSetsRequest>,LexModelsV2Request.Builder,SdkBuilder<ListTestSetsRequest.Builder,ListTestSetsRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- ListTestSetsRequest
public static interface ListTestSetsRequest.Builder extends LexModelsV2Request.Builder, SdkPojo, CopyableBuilder<ListTestSetsRequest.Builder,ListTestSetsRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description ListTestSetsRequest.BuildermaxResults(Integer maxResults)The maximum number of test sets to return in each page.ListTestSetsRequest.BuildernextToken(String nextToken)If the response from the ListTestSets operation contains more results than specified in the maxResults parameter, a token is returned in the response.ListTestSetsRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)ListTestSetsRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)default ListTestSetsRequest.BuildersortBy(Consumer<TestSetSortBy.Builder> sortBy)The sort order for the list of test sets.ListTestSetsRequest.BuildersortBy(TestSetSortBy sortBy)The sort order for the list of test sets.-
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.lexmodelsv2.model.LexModelsV2Request.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
-
sortBy
ListTestSetsRequest.Builder sortBy(TestSetSortBy sortBy)
The sort order for the list of test sets.
- Parameters:
sortBy- The sort order for the list of test sets.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
sortBy
default ListTestSetsRequest.Builder sortBy(Consumer<TestSetSortBy.Builder> sortBy)
The sort order for the list of test sets.
This is a convenience method that creates an instance of theTestSetSortBy.Builderavoiding the need to create one manually viaTestSetSortBy.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tosortBy(TestSetSortBy).- Parameters:
sortBy- a consumer that will call methods onTestSetSortBy.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
sortBy(TestSetSortBy)
-
maxResults
ListTestSetsRequest.Builder maxResults(Integer maxResults)
The maximum number of test sets to return in each page. If there are fewer results than the max page size, only the actual number of results are returned.
- Parameters:
maxResults- The maximum number of test sets to return in each page. If there are fewer results than the max page size, only the actual number of results are returned.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
nextToken
ListTestSetsRequest.Builder nextToken(String nextToken)
If the response from the ListTestSets operation contains more results than specified in the maxResults parameter, a token is returned in the response. Use that token in the nextToken parameter to return the next page of results.
- Parameters:
nextToken- If the response from the ListTestSets operation contains more results than specified in the maxResults parameter, a token is returned in the response. Use that token in the nextToken parameter to return the next page of results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
overrideConfiguration
ListTestSetsRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
ListTestSetsRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-