Interface ListSuiteRunsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<ListSuiteRunsResponse.Builder,ListSuiteRunsResponse>,IotDeviceAdvisorResponse.Builder,SdkBuilder<ListSuiteRunsResponse.Builder,ListSuiteRunsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListSuiteRunsResponse
public static interface ListSuiteRunsResponse.Builder extends IotDeviceAdvisorResponse.Builder, SdkPojo, CopyableBuilder<ListSuiteRunsResponse.Builder,ListSuiteRunsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListSuiteRunsResponse.BuildernextToken(String nextToken)A token to retrieve the next set of results.ListSuiteRunsResponse.BuildersuiteRunsList(Collection<SuiteRunInformation> suiteRunsList)An array of objects that provide summaries of information about the suite runs in the list.ListSuiteRunsResponse.BuildersuiteRunsList(Consumer<SuiteRunInformation.Builder>... suiteRunsList)An array of objects that provide summaries of information about the suite runs in the list.ListSuiteRunsResponse.BuildersuiteRunsList(SuiteRunInformation... suiteRunsList)An array of objects that provide summaries of information about the suite runs in the list.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.iotdeviceadvisor.model.IotDeviceAdvisorResponse.Builder
build, responseMetadata, responseMetadata
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
suiteRunsList
ListSuiteRunsResponse.Builder suiteRunsList(Collection<SuiteRunInformation> suiteRunsList)
An array of objects that provide summaries of information about the suite runs in the list.
- Parameters:
suiteRunsList- An array of objects that provide summaries of information about the suite runs in the list.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
suiteRunsList
ListSuiteRunsResponse.Builder suiteRunsList(SuiteRunInformation... suiteRunsList)
An array of objects that provide summaries of information about the suite runs in the list.
- Parameters:
suiteRunsList- An array of objects that provide summaries of information about the suite runs in the list.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
suiteRunsList
ListSuiteRunsResponse.Builder suiteRunsList(Consumer<SuiteRunInformation.Builder>... suiteRunsList)
An array of objects that provide summaries of information about the suite runs in the list.
This is a convenience method that creates an instance of theSuiteRunInformation.Builderavoiding the need to create one manually viaSuiteRunInformation.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#suiteRunsList(List.) - Parameters:
suiteRunsList- a consumer that will call methods onSuiteRunInformation.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#suiteRunsList(java.util.Collection)
-
nextToken
ListSuiteRunsResponse.Builder nextToken(String nextToken)
A token to retrieve the next set of results.
- Parameters:
nextToken- A token to retrieve the next set of results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-