Interface GetFindingsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CodeGuruSecurityResponse.Builder,CopyableBuilder<GetFindingsResponse.Builder,GetFindingsResponse>,SdkBuilder<GetFindingsResponse.Builder,GetFindingsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- GetFindingsResponse
public static interface GetFindingsResponse.Builder extends CodeGuruSecurityResponse.Builder, SdkPojo, CopyableBuilder<GetFindingsResponse.Builder,GetFindingsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description GetFindingsResponse.Builderfindings(Collection<Finding> findings)A list of findings generated by the specified scan.GetFindingsResponse.Builderfindings(Consumer<Finding.Builder>... findings)A list of findings generated by the specified scan.GetFindingsResponse.Builderfindings(Finding... findings)A list of findings generated by the specified scan.GetFindingsResponse.BuildernextToken(String nextToken)A pagination token.-
Methods inherited from interface software.amazon.awssdk.services.codegurusecurity.model.CodeGuruSecurityResponse.Builder
build, responseMetadata, responseMetadata
-
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.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
findings
GetFindingsResponse.Builder findings(Collection<Finding> findings)
A list of findings generated by the specified scan.
- Parameters:
findings- A list of findings generated by the specified scan.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
findings
GetFindingsResponse.Builder findings(Finding... findings)
A list of findings generated by the specified scan.
- Parameters:
findings- A list of findings generated by the specified scan.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
findings
GetFindingsResponse.Builder findings(Consumer<Finding.Builder>... findings)
A list of findings generated by the specified scan.
This is a convenience method that creates an instance of theFinding.Builderavoiding the need to create one manually viaFinding.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#findings(List.) - Parameters:
findings- a consumer that will call methods onFinding.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#findings(java.util.Collection)
-
nextToken
GetFindingsResponse.Builder nextToken(String nextToken)
A pagination token. You can use this in future calls to
GetFindingsto continue listing results after the current page.- Parameters:
nextToken- A pagination token. You can use this in future calls toGetFindingsto continue listing results after the current page.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-