Interface ListProjectsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<ListProjectsResponse.Builder,ListProjectsResponse>,DataZoneResponse.Builder,SdkBuilder<ListProjectsResponse.Builder,ListProjectsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListProjectsResponse
public static interface ListProjectsResponse.Builder extends DataZoneResponse.Builder, SdkPojo, CopyableBuilder<ListProjectsResponse.Builder,ListProjectsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListProjectsResponse.Builderitems(Collection<ProjectSummary> items)The results of theListProjectsaction.ListProjectsResponse.Builderitems(Consumer<ProjectSummary.Builder>... items)The results of theListProjectsaction.ListProjectsResponse.Builderitems(ProjectSummary... items)The results of theListProjectsaction.ListProjectsResponse.BuildernextToken(String nextToken)When the number of projects is greater than the default value for theMaxResultsparameter, or if you explicitly specify a value forMaxResultsthat is less than the number of projects, 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
-
items
ListProjectsResponse.Builder items(Collection<ProjectSummary> items)
The results of the
ListProjectsaction.- Parameters:
items- The results of theListProjectsaction.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
items
ListProjectsResponse.Builder items(ProjectSummary... items)
The results of the
ListProjectsaction.- Parameters:
items- The results of theListProjectsaction.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
items
ListProjectsResponse.Builder items(Consumer<ProjectSummary.Builder>... items)
The results of the
This is a convenience method that creates an instance of theListProjectsaction.ProjectSummary.Builderavoiding the need to create one manually viaProjectSummary.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#items(List.) - Parameters:
items- a consumer that will call methods onProjectSummary.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#items(java.util.Collection)
-
nextToken
ListProjectsResponse.Builder nextToken(String nextToken)
When the number of projects is greater than the default value for the
MaxResultsparameter, or if you explicitly specify a value forMaxResultsthat is less than the number of projects, the response includes a pagination token namedNextToken. You can specify thisNextTokenvalue in a subsequent call toListProjectsto list the next set of projects.- Parameters:
nextToken- When the number of projects is greater than the default value for theMaxResultsparameter, or if you explicitly specify a value forMaxResultsthat is less than the number of projects, the response includes a pagination token namedNextToken. You can specify thisNextTokenvalue in a subsequent call toListProjectsto list the next set of projects.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-