Interface DeleteBuildBatchResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CodeBuildResponse.Builder,CopyableBuilder<DeleteBuildBatchResponse.Builder,DeleteBuildBatchResponse>,SdkBuilder<DeleteBuildBatchResponse.Builder,DeleteBuildBatchResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- DeleteBuildBatchResponse
public static interface DeleteBuildBatchResponse.Builder extends CodeBuildResponse.Builder, SdkPojo, CopyableBuilder<DeleteBuildBatchResponse.Builder,DeleteBuildBatchResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DeleteBuildBatchResponse.BuilderbuildsDeleted(String... buildsDeleted)An array of strings that contain the identifiers of the builds that were deleted.DeleteBuildBatchResponse.BuilderbuildsDeleted(Collection<String> buildsDeleted)An array of strings that contain the identifiers of the builds that were deleted.DeleteBuildBatchResponse.BuilderbuildsNotDeleted(Collection<BuildNotDeleted> buildsNotDeleted)An array ofBuildNotDeletedobjects that specify the builds that could not be deleted.DeleteBuildBatchResponse.BuilderbuildsNotDeleted(Consumer<BuildNotDeleted.Builder>... buildsNotDeleted)An array ofBuildNotDeletedobjects that specify the builds that could not be deleted.DeleteBuildBatchResponse.BuilderbuildsNotDeleted(BuildNotDeleted... buildsNotDeleted)An array ofBuildNotDeletedobjects that specify the builds that could not be deleted.DeleteBuildBatchResponse.BuilderstatusCode(String statusCodeValue)The status code.-
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
-
statusCode
DeleteBuildBatchResponse.Builder statusCode(String statusCodeValue)
The status code.
- Parameters:
statusCodeValue- The status code.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
buildsDeleted
DeleteBuildBatchResponse.Builder buildsDeleted(Collection<String> buildsDeleted)
An array of strings that contain the identifiers of the builds that were deleted.
- Parameters:
buildsDeleted- An array of strings that contain the identifiers of the builds that were deleted.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
buildsDeleted
DeleteBuildBatchResponse.Builder buildsDeleted(String... buildsDeleted)
An array of strings that contain the identifiers of the builds that were deleted.
- Parameters:
buildsDeleted- An array of strings that contain the identifiers of the builds that were deleted.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
buildsNotDeleted
DeleteBuildBatchResponse.Builder buildsNotDeleted(Collection<BuildNotDeleted> buildsNotDeleted)
An array of
BuildNotDeletedobjects that specify the builds that could not be deleted.- Parameters:
buildsNotDeleted- An array ofBuildNotDeletedobjects that specify the builds that could not be deleted.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
buildsNotDeleted
DeleteBuildBatchResponse.Builder buildsNotDeleted(BuildNotDeleted... buildsNotDeleted)
An array of
BuildNotDeletedobjects that specify the builds that could not be deleted.- Parameters:
buildsNotDeleted- An array ofBuildNotDeletedobjects that specify the builds that could not be deleted.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
buildsNotDeleted
DeleteBuildBatchResponse.Builder buildsNotDeleted(Consumer<BuildNotDeleted.Builder>... buildsNotDeleted)
An array of
This is a convenience method that creates an instance of theBuildNotDeletedobjects that specify the builds that could not be deleted.BuildNotDeleted.Builderavoiding the need to create one manually viaBuildNotDeleted.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#buildsNotDeleted(List.) - Parameters:
buildsNotDeleted- a consumer that will call methods onBuildNotDeleted.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#buildsNotDeleted(java.util.Collection)
-
-