Interface ListProjectsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<ListProjectsResponse.Builder,ListProjectsResponse>,EvidentlyResponse.Builder,SdkBuilder<ListProjectsResponse.Builder,ListProjectsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListProjectsResponse
public static interface ListProjectsResponse.Builder extends EvidentlyResponse.Builder, SdkPojo, CopyableBuilder<ListProjectsResponse.Builder,ListProjectsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListProjectsResponse.BuildernextToken(String nextToken)The token to use in a subsequentListProjectsoperation to return the next set of results.ListProjectsResponse.Builderprojects(Collection<ProjectSummary> projects)An array of structures that contain the configuration details of the projects in the Region.ListProjectsResponse.Builderprojects(Consumer<ProjectSummary.Builder>... projects)An array of structures that contain the configuration details of the projects in the Region.ListProjectsResponse.Builderprojects(ProjectSummary... projects)An array of structures that contain the configuration details of the projects in the Region.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.evidently.model.EvidentlyResponse.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, sdkFieldNameToField, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
nextToken
ListProjectsResponse.Builder nextToken(String nextToken)
The token to use in a subsequent
ListProjectsoperation to return the next set of results.- Parameters:
nextToken- The token to use in a subsequentListProjectsoperation to return the next set of results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
projects
ListProjectsResponse.Builder projects(Collection<ProjectSummary> projects)
An array of structures that contain the configuration details of the projects in the Region.
- Parameters:
projects- An array of structures that contain the configuration details of the projects in the Region.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
projects
ListProjectsResponse.Builder projects(ProjectSummary... projects)
An array of structures that contain the configuration details of the projects in the Region.
- Parameters:
projects- An array of structures that contain the configuration details of the projects in the Region.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
projects
ListProjectsResponse.Builder projects(Consumer<ProjectSummary.Builder>... projects)
An array of structures that contain the configuration details of the projects in the Region.
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#projects(List.) - Parameters:
projects- 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:
#projects(java.util.Collection)
-
-