Interface ListCollaborationsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CleanRoomsResponse.Builder,CopyableBuilder<ListCollaborationsResponse.Builder,ListCollaborationsResponse>,SdkBuilder<ListCollaborationsResponse.Builder,ListCollaborationsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListCollaborationsResponse
public static interface ListCollaborationsResponse.Builder extends CleanRoomsResponse.Builder, SdkPojo, CopyableBuilder<ListCollaborationsResponse.Builder,ListCollaborationsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListCollaborationsResponse.BuildercollaborationList(Collection<CollaborationSummary> collaborationList)The list of collaborations.ListCollaborationsResponse.BuildercollaborationList(Consumer<CollaborationSummary.Builder>... collaborationList)The list of collaborations.ListCollaborationsResponse.BuildercollaborationList(CollaborationSummary... collaborationList)The list of collaborations.ListCollaborationsResponse.BuildernextToken(String nextToken)The token value retrieved from a previous call to access the next page of results.-
Methods inherited from interface software.amazon.awssdk.services.cleanrooms.model.CleanRoomsResponse.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
-
nextToken
ListCollaborationsResponse.Builder nextToken(String nextToken)
The token value retrieved from a previous call to access the next page of results.
- Parameters:
nextToken- The token value retrieved from a previous call to access the next page of results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
collaborationList
ListCollaborationsResponse.Builder collaborationList(Collection<CollaborationSummary> collaborationList)
The list of collaborations.
- Parameters:
collaborationList- The list of collaborations.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
collaborationList
ListCollaborationsResponse.Builder collaborationList(CollaborationSummary... collaborationList)
The list of collaborations.
- Parameters:
collaborationList- The list of collaborations.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
collaborationList
ListCollaborationsResponse.Builder collaborationList(Consumer<CollaborationSummary.Builder>... collaborationList)
The list of collaborations.
This is a convenience method that creates an instance of theCollaborationSummary.Builderavoiding the need to create one manually viaCollaborationSummary.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#collaborationList(List.) - Parameters:
collaborationList- a consumer that will call methods onCollaborationSummary.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#collaborationList(java.util.Collection)
-
-