Interface ListProjectsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CodeCatalystResponse.Builder,CopyableBuilder<ListProjectsResponse.Builder,ListProjectsResponse>,SdkBuilder<ListProjectsResponse.Builder,ListProjectsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListProjectsResponse
public static interface ListProjectsResponse.Builder extends CodeCatalystResponse.Builder, SdkPojo, CopyableBuilder<ListProjectsResponse.Builder,ListProjectsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListProjectsResponse.Builderitems(Collection<ProjectSummary> items)Information about the projects.ListProjectsResponse.Builderitems(Consumer<ProjectSummary.Builder>... items)Information about the projects.ListProjectsResponse.Builderitems(ProjectSummary... items)Information about the projects.ListProjectsResponse.BuildernextToken(String nextToken)A token returned from a call to this API to indicate the next batch of results to return, if any.-
Methods inherited from interface software.amazon.awssdk.services.codecatalyst.model.CodeCatalystResponse.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
ListProjectsResponse.Builder nextToken(String nextToken)
A token returned from a call to this API to indicate the next batch of results to return, if any.
- Parameters:
nextToken- A token returned from a call to this API to indicate the next batch of results to return, if any.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
items
ListProjectsResponse.Builder items(Collection<ProjectSummary> items)
Information about the projects.
- Parameters:
items- Information about the projects.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
items
ListProjectsResponse.Builder items(ProjectSummary... items)
Information about the projects.
- Parameters:
items- Information about the projects.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
items
ListProjectsResponse.Builder items(Consumer<ProjectSummary.Builder>... items)
Information about the projects.
This is a convenience method that creates an instance of theProjectSummary.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)
-
-