Interface ListApplicationsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<ListApplicationsResponse.Builder,ListApplicationsResponse>,IoTFleetHubResponse.Builder,SdkBuilder<ListApplicationsResponse.Builder,ListApplicationsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListApplicationsResponse
public static interface ListApplicationsResponse.Builder extends IoTFleetHubResponse.Builder, SdkPojo, CopyableBuilder<ListApplicationsResponse.Builder,ListApplicationsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListApplicationsResponse.BuilderapplicationSummaries(Collection<ApplicationSummary> applicationSummaries)An array of objects that provide summaries of information about the web applications in the list.ListApplicationsResponse.BuilderapplicationSummaries(Consumer<ApplicationSummary.Builder>... applicationSummaries)An array of objects that provide summaries of information about the web applications in the list.ListApplicationsResponse.BuilderapplicationSummaries(ApplicationSummary... applicationSummaries)An array of objects that provide summaries of information about the web applications in the list.ListApplicationsResponse.BuildernextToken(String nextToken)A token used to get the next set of results.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.iotfleethub.model.IoTFleetHubResponse.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, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
applicationSummaries
ListApplicationsResponse.Builder applicationSummaries(Collection<ApplicationSummary> applicationSummaries)
An array of objects that provide summaries of information about the web applications in the list.
- Parameters:
applicationSummaries- An array of objects that provide summaries of information about the web applications in the list.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
applicationSummaries
ListApplicationsResponse.Builder applicationSummaries(ApplicationSummary... applicationSummaries)
An array of objects that provide summaries of information about the web applications in the list.
- Parameters:
applicationSummaries- An array of objects that provide summaries of information about the web applications in the list.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
applicationSummaries
ListApplicationsResponse.Builder applicationSummaries(Consumer<ApplicationSummary.Builder>... applicationSummaries)
An array of objects that provide summaries of information about the web applications in the list.
This is a convenience method that creates an instance of theApplicationSummary.Builderavoiding the need to create one manually viaApplicationSummary.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#applicationSummaries(List.) - Parameters:
applicationSummaries- a consumer that will call methods onApplicationSummary.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#applicationSummaries(java.util.Collection)
-
nextToken
ListApplicationsResponse.Builder nextToken(String nextToken)
A token used to get the next set of results.
- Parameters:
nextToken- A token used to get the next set of results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-