Interface ListChecksResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<ListChecksResponse.Builder,ListChecksResponse>,SdkBuilder<ListChecksResponse.Builder,ListChecksResponse>,SdkPojo,SdkResponse.Builder,TrustedAdvisorResponse.Builder
- Enclosing class:
- ListChecksResponse
public static interface ListChecksResponse.Builder extends TrustedAdvisorResponse.Builder, SdkPojo, CopyableBuilder<ListChecksResponse.Builder,ListChecksResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListChecksResponse.BuildercheckSummaries(Collection<CheckSummary> checkSummaries)The list of ChecksListChecksResponse.BuildercheckSummaries(Consumer<CheckSummary.Builder>... checkSummaries)The list of ChecksListChecksResponse.BuildercheckSummaries(CheckSummary... checkSummaries)The list of ChecksListChecksResponse.BuildernextToken(String nextToken)The token for the next set of results.-
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
-
Methods inherited from interface software.amazon.awssdk.services.trustedadvisor.model.TrustedAdvisorResponse.Builder
build, responseMetadata, responseMetadata
-
-
-
-
Method Detail
-
checkSummaries
ListChecksResponse.Builder checkSummaries(Collection<CheckSummary> checkSummaries)
The list of Checks
- Parameters:
checkSummaries- The list of Checks- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
checkSummaries
ListChecksResponse.Builder checkSummaries(CheckSummary... checkSummaries)
The list of Checks
- Parameters:
checkSummaries- The list of Checks- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
checkSummaries
ListChecksResponse.Builder checkSummaries(Consumer<CheckSummary.Builder>... checkSummaries)
The list of Checks
This is a convenience method that creates an instance of theCheckSummary.Builderavoiding the need to create one manually viaCheckSummary.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#checkSummaries(List.) - Parameters:
checkSummaries- a consumer that will call methods onCheckSummary.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#checkSummaries(java.util.Collection)
-
nextToken
ListChecksResponse.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.
-
-