Interface ListProjectMembershipsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<ListProjectMembershipsResponse.Builder,ListProjectMembershipsResponse>,DataZoneResponse.Builder,SdkBuilder<ListProjectMembershipsResponse.Builder,ListProjectMembershipsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListProjectMembershipsResponse
public static interface ListProjectMembershipsResponse.Builder extends DataZoneResponse.Builder, SdkPojo, CopyableBuilder<ListProjectMembershipsResponse.Builder,ListProjectMembershipsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListProjectMembershipsResponse.Buildermembers(Collection<ProjectMember> members)The members of the project.ListProjectMembershipsResponse.Buildermembers(Consumer<ProjectMember.Builder>... members)The members of the project.ListProjectMembershipsResponse.Buildermembers(ProjectMember... members)The members of the project.ListProjectMembershipsResponse.BuildernextToken(String nextToken)When the number of memberships is greater than the default value for theMaxResultsparameter, or if you explicitly specify a value forMaxResultsthat is less than the number of memberships, the response includes a pagination token namedNextToken.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.datazone.model.DataZoneResponse.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
-
members
ListProjectMembershipsResponse.Builder members(Collection<ProjectMember> members)
The members of the project.
- Parameters:
members- The members of the project.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
members
ListProjectMembershipsResponse.Builder members(ProjectMember... members)
The members of the project.
- Parameters:
members- The members of the project.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
members
ListProjectMembershipsResponse.Builder members(Consumer<ProjectMember.Builder>... members)
The members of the project.
This is a convenience method that creates an instance of theProjectMember.Builderavoiding the need to create one manually viaProjectMember.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#members(List.) - Parameters:
members- a consumer that will call methods onProjectMember.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#members(java.util.Collection)
-
nextToken
ListProjectMembershipsResponse.Builder nextToken(String nextToken)
When the number of memberships is greater than the default value for the
MaxResultsparameter, or if you explicitly specify a value forMaxResultsthat is less than the number of memberships, the response includes a pagination token namedNextToken. You can specify thisNextTokenvalue in a subsequent call toListProjectMembershipsto list the next set of memberships.- Parameters:
nextToken- When the number of memberships is greater than the default value for theMaxResultsparameter, or if you explicitly specify a value forMaxResultsthat is less than the number of memberships, the response includes a pagination token namedNextToken. You can specify thisNextTokenvalue in a subsequent call toListProjectMembershipsto list the next set of memberships.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-