Interface ListProjectsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CodeBuildResponse.Builder,CopyableBuilder<ListProjectsResponse.Builder,ListProjectsResponse>,SdkBuilder<ListProjectsResponse.Builder,ListProjectsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListProjectsResponse
public static interface ListProjectsResponse.Builder extends CodeBuildResponse.Builder, SdkPojo, CopyableBuilder<ListProjectsResponse.Builder,ListProjectsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListProjectsResponse.BuildernextToken(String nextToken)If there are more than 100 items in the list, only the first 100 items are returned, along with a unique string called a nextToken.ListProjectsResponse.Builderprojects(String... projects)The list of build project names, with each build project name representing a single build project.ListProjectsResponse.Builderprojects(Collection<String> projects)The list of build project names, with each build project name representing a single build project.-
Methods inherited from interface software.amazon.awssdk.services.codebuild.model.CodeBuildResponse.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)
If there are more than 100 items in the list, only the first 100 items are returned, along with a unique string called a nextToken. To get the next batch of items in the list, call this operation again, adding the next token to the call.
- Parameters:
nextToken- If there are more than 100 items in the list, only the first 100 items are returned, along with a unique string called a nextToken. To get the next batch of items in the list, call this operation again, adding the next token to the call.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
projects
ListProjectsResponse.Builder projects(Collection<String> projects)
The list of build project names, with each build project name representing a single build project.
- Parameters:
projects- The list of build project names, with each build project name representing a single build project.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
projects
ListProjectsResponse.Builder projects(String... projects)
The list of build project names, with each build project name representing a single build project.
- Parameters:
projects- The list of build project names, with each build project name representing a single build project.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-