Interface ListBuildsRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CodeBuildRequest.Builder,CopyableBuilder<ListBuildsRequest.Builder,ListBuildsRequest>,SdkBuilder<ListBuildsRequest.Builder,ListBuildsRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- ListBuildsRequest
public static interface ListBuildsRequest.Builder extends CodeBuildRequest.Builder, SdkPojo, CopyableBuilder<ListBuildsRequest.Builder,ListBuildsRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListBuildsRequest.BuildernextToken(String nextToken)During a previous call, 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.ListBuildsRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)ListBuildsRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)ListBuildsRequest.BuildersortOrder(String sortOrder)The order to list build IDs.ListBuildsRequest.BuildersortOrder(SortOrderType sortOrder)The order to list build IDs.-
Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
-
Methods inherited from interface software.amazon.awssdk.services.codebuild.model.CodeBuildRequest.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
-
sortOrder
ListBuildsRequest.Builder sortOrder(String sortOrder)
The order to list build IDs. Valid values include:
-
ASCENDING: List the build IDs in ascending order by build ID. -
DESCENDING: List the build IDs in descending order by build ID.
- Parameters:
sortOrder- The order to list build IDs. Valid values include:-
ASCENDING: List the build IDs in ascending order by build ID. -
DESCENDING: List the build IDs in descending order by build ID.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
SortOrderType,SortOrderType
-
-
sortOrder
ListBuildsRequest.Builder sortOrder(SortOrderType sortOrder)
The order to list build IDs. Valid values include:
-
ASCENDING: List the build IDs in ascending order by build ID. -
DESCENDING: List the build IDs in descending order by build ID.
- Parameters:
sortOrder- The order to list build IDs. Valid values include:-
ASCENDING: List the build IDs in ascending order by build ID. -
DESCENDING: List the build IDs in descending order by build ID.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
SortOrderType,SortOrderType
-
-
nextToken
ListBuildsRequest.Builder nextToken(String nextToken)
During a previous call, 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. To get all of the items in the list, keep calling this operation with each subsequent next token that is returned, until no more next tokens are returned.
- Parameters:
nextToken- During a previous call, 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. To get all of the items in the list, keep calling this operation with each subsequent next token that is returned, until no more next tokens are returned.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
overrideConfiguration
ListBuildsRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
ListBuildsRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-