Interface ListApplicationsResponse.Builder
-
- All Superinterfaces:
ApplicationInsightsResponse.Builder,AwsResponse.Builder,Buildable,CopyableBuilder<ListApplicationsResponse.Builder,ListApplicationsResponse>,SdkBuilder<ListApplicationsResponse.Builder,ListApplicationsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListApplicationsResponse
public static interface ListApplicationsResponse.Builder extends ApplicationInsightsResponse.Builder, SdkPojo, CopyableBuilder<ListApplicationsResponse.Builder,ListApplicationsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListApplicationsResponse.BuilderapplicationInfoList(Collection<ApplicationInfo> applicationInfoList)The list of applications.ListApplicationsResponse.BuilderapplicationInfoList(Consumer<ApplicationInfo.Builder>... applicationInfoList)The list of applications.ListApplicationsResponse.BuilderapplicationInfoList(ApplicationInfo... applicationInfoList)The list of applications.ListApplicationsResponse.BuildernextToken(String nextToken)The token used to retrieve the next page of results.-
Methods inherited from interface software.amazon.awssdk.services.applicationinsights.model.ApplicationInsightsResponse.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
-
applicationInfoList
ListApplicationsResponse.Builder applicationInfoList(Collection<ApplicationInfo> applicationInfoList)
The list of applications.
- Parameters:
applicationInfoList- The list of applications.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
applicationInfoList
ListApplicationsResponse.Builder applicationInfoList(ApplicationInfo... applicationInfoList)
The list of applications.
- Parameters:
applicationInfoList- The list of applications.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
applicationInfoList
ListApplicationsResponse.Builder applicationInfoList(Consumer<ApplicationInfo.Builder>... applicationInfoList)
The list of applications.
This is a convenience method that creates an instance of theApplicationInfo.Builderavoiding the need to create one manually viaApplicationInfo.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#applicationInfoList(List.) - Parameters:
applicationInfoList- a consumer that will call methods onApplicationInfo.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#applicationInfoList(java.util.Collection)
-
nextToken
ListApplicationsResponse.Builder nextToken(String nextToken)
The token used to retrieve the next page of results. This value is
nullwhen there are no more results to return.- Parameters:
nextToken- The token used to retrieve the next page of results. This value isnullwhen there are no more results to return.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-