Interface DescribeApplicationsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<DescribeApplicationsResponse.Builder,DescribeApplicationsResponse>,SdkBuilder<DescribeApplicationsResponse.Builder,DescribeApplicationsResponse>,SdkPojo,SdkResponse.Builder,WorkSpacesResponse.Builder
- Enclosing class:
- DescribeApplicationsResponse
public static interface DescribeApplicationsResponse.Builder extends WorkSpacesResponse.Builder, SdkPojo, CopyableBuilder<DescribeApplicationsResponse.Builder,DescribeApplicationsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DescribeApplicationsResponse.Builderapplications(Collection<WorkSpaceApplication> applications)List of information about the specified applications.DescribeApplicationsResponse.Builderapplications(Consumer<WorkSpaceApplication.Builder>... applications)List of information about the specified applications.DescribeApplicationsResponse.Builderapplications(WorkSpaceApplication... applications)List of information about the specified applications.DescribeApplicationsResponse.BuildernextToken(String nextToken)If you received aNextTokenfrom a previous call that was paginated, provide this token to receive 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, sdkFieldNameToField, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
Methods inherited from interface software.amazon.awssdk.services.workspaces.model.WorkSpacesResponse.Builder
build, responseMetadata, responseMetadata
-
-
-
-
Method Detail
-
applications
DescribeApplicationsResponse.Builder applications(Collection<WorkSpaceApplication> applications)
List of information about the specified applications.
- Parameters:
applications- List of information about the specified applications.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
applications
DescribeApplicationsResponse.Builder applications(WorkSpaceApplication... applications)
List of information about the specified applications.
- Parameters:
applications- List of information about the specified applications.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
applications
DescribeApplicationsResponse.Builder applications(Consumer<WorkSpaceApplication.Builder>... applications)
List of information about the specified applications.
This is a convenience method that creates an instance of theWorkSpaceApplication.Builderavoiding the need to create one manually viaWorkSpaceApplication.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 onWorkSpaceApplication.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)
If you received a
NextTokenfrom a previous call that was paginated, provide this token to receive the next set of results.- Parameters:
nextToken- If you received aNextTokenfrom a previous call that was paginated, provide this token to receive the next set of results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-