Interface ListProjectsRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CodeCatalystRequest.Builder,CopyableBuilder<ListProjectsRequest.Builder,ListProjectsRequest>,SdkBuilder<ListProjectsRequest.Builder,ListProjectsRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- ListProjectsRequest
public static interface ListProjectsRequest.Builder extends CodeCatalystRequest.Builder, SdkPojo, CopyableBuilder<ListProjectsRequest.Builder,ListProjectsRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListProjectsRequest.Builderfilters(Collection<ProjectListFilter> filters)Information about filters to apply to narrow the results returned in the list.ListProjectsRequest.Builderfilters(Consumer<ProjectListFilter.Builder>... filters)Information about filters to apply to narrow the results returned in the list.ListProjectsRequest.Builderfilters(ProjectListFilter... filters)Information about filters to apply to narrow the results returned in the list.ListProjectsRequest.BuildermaxResults(Integer maxResults)The maximum number of results to show in a single call to this API.ListProjectsRequest.BuildernextToken(String nextToken)A token returned from a call to this API to indicate the next batch of results to return, if any.ListProjectsRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)ListProjectsRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)ListProjectsRequest.BuilderspaceName(String spaceName)The name of the space.-
Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
-
Methods inherited from interface software.amazon.awssdk.services.codecatalyst.model.CodeCatalystRequest.Builder
build
-
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
-
-
-
-
Method Detail
-
spaceName
ListProjectsRequest.Builder spaceName(String spaceName)
The name of the space.
- Parameters:
spaceName- The name of the space.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
nextToken
ListProjectsRequest.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.
-
maxResults
ListProjectsRequest.Builder maxResults(Integer maxResults)
The maximum number of results to show in a single call to this API. If the number of results is larger than the number you specified, the response will include a
NextTokenelement, which you can use to obtain additional results.- Parameters:
maxResults- The maximum number of results to show in a single call to this API. If the number of results is larger than the number you specified, the response will include aNextTokenelement, which you can use to obtain additional results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
filters
ListProjectsRequest.Builder filters(Collection<ProjectListFilter> filters)
Information about filters to apply to narrow the results returned in the list.
- Parameters:
filters- Information about filters to apply to narrow the results returned in the list.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
filters
ListProjectsRequest.Builder filters(ProjectListFilter... filters)
Information about filters to apply to narrow the results returned in the list.
- Parameters:
filters- Information about filters to apply to narrow the results returned in the list.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
filters
ListProjectsRequest.Builder filters(Consumer<ProjectListFilter.Builder>... filters)
Information about filters to apply to narrow the results returned in the list.
This is a convenience method that creates an instance of theProjectListFilter.Builderavoiding the need to create one manually viaProjectListFilter.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#filters(List.) - Parameters:
filters- a consumer that will call methods onProjectListFilter.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#filters(java.util.Collection)
-
overrideConfiguration
ListProjectsRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
ListProjectsRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-