Interface ListFindingsRequest.Builder
-
- All Superinterfaces:
AccessAnalyzerRequest.Builder,AwsRequest.Builder,Buildable,CopyableBuilder<ListFindingsRequest.Builder,ListFindingsRequest>,SdkBuilder<ListFindingsRequest.Builder,ListFindingsRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- ListFindingsRequest
public static interface ListFindingsRequest.Builder extends AccessAnalyzerRequest.Builder, SdkPojo, CopyableBuilder<ListFindingsRequest.Builder,ListFindingsRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description ListFindingsRequest.BuilderanalyzerArn(String analyzerArn)The ARN of the analyzer to retrieve findings from.ListFindingsRequest.Builderfilter(Map<String,Criterion> filter)A filter to match for the findings to return.ListFindingsRequest.BuildermaxResults(Integer maxResults)The maximum number of results to return in the response.ListFindingsRequest.BuildernextToken(String nextToken)A token used for pagination of results returned.ListFindingsRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)ListFindingsRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)default ListFindingsRequest.Buildersort(Consumer<SortCriteria.Builder> sort)The sort order for the findings returned.ListFindingsRequest.Buildersort(SortCriteria sort)The sort order for the findings returned.-
Methods inherited from interface software.amazon.awssdk.services.accessanalyzer.model.AccessAnalyzerRequest.Builder
build
-
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
-
-
-
-
Method Detail
-
analyzerArn
ListFindingsRequest.Builder analyzerArn(String analyzerArn)
The ARN of the analyzer to retrieve findings from.
- Parameters:
analyzerArn- The ARN of the analyzer to retrieve findings from.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
filter
ListFindingsRequest.Builder filter(Map<String,Criterion> filter)
A filter to match for the findings to return.
- Parameters:
filter- A filter to match for the findings to return.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
sort
ListFindingsRequest.Builder sort(SortCriteria sort)
The sort order for the findings returned.
- Parameters:
sort- The sort order for the findings returned.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
sort
default ListFindingsRequest.Builder sort(Consumer<SortCriteria.Builder> sort)
The sort order for the findings returned.
This is a convenience method that creates an instance of theSortCriteria.Builderavoiding the need to create one manually viaSortCriteria.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tosort(SortCriteria).- Parameters:
sort- a consumer that will call methods onSortCriteria.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
sort(SortCriteria)
-
nextToken
ListFindingsRequest.Builder nextToken(String nextToken)
A token used for pagination of results returned.
- Parameters:
nextToken- A token used for pagination of results returned.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
maxResults
ListFindingsRequest.Builder maxResults(Integer maxResults)
The maximum number of results to return in the response.
- Parameters:
maxResults- The maximum number of results to return in the response.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
overrideConfiguration
ListFindingsRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
ListFindingsRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-