Interface DescribeApplicationsResponse.Builder
-
- All Superinterfaces:
AppStreamResponse.Builder,AwsResponse.Builder,Buildable,CopyableBuilder<DescribeApplicationsResponse.Builder,DescribeApplicationsResponse>,SdkBuilder<DescribeApplicationsResponse.Builder,DescribeApplicationsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- DescribeApplicationsResponse
public static interface DescribeApplicationsResponse.Builder extends AppStreamResponse.Builder, SdkPojo, CopyableBuilder<DescribeApplicationsResponse.Builder,DescribeApplicationsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DescribeApplicationsResponse.Builderapplications(Collection<Application> applications)The applications in the list.DescribeApplicationsResponse.Builderapplications(Consumer<Application.Builder>... applications)The applications in the list.DescribeApplicationsResponse.Builderapplications(Application... applications)The applications in the list.DescribeApplicationsResponse.BuildernextToken(String nextToken)The pagination token used to retrieve the next page of results for this operation.-
Methods inherited from interface software.amazon.awssdk.services.appstream.model.AppStreamResponse.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, sdkFieldNameToField, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
applications
DescribeApplicationsResponse.Builder applications(Collection<Application> applications)
The applications in the list.
- Parameters:
applications- The applications in the list.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
applications
DescribeApplicationsResponse.Builder applications(Application... applications)
The applications in the list.
- Parameters:
applications- The applications in the list.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
applications
DescribeApplicationsResponse.Builder applications(Consumer<Application.Builder>... applications)
The applications in the list.
This is a convenience method that creates an instance of theApplication.Builderavoiding the need to create one manually viaApplication.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#applications(List.) - Parameters:
applications- a consumer that will call methods onApplication.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#applications(java.util.Collection)
-
nextToken
DescribeApplicationsResponse.Builder nextToken(String nextToken)
The pagination token used to retrieve the next page of results for this operation.
- Parameters:
nextToken- The pagination token used to retrieve the next page of results for this operation.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-