Interface BatchDeleteBuildsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CodeBuildResponse.Builder,CopyableBuilder<BatchDeleteBuildsResponse.Builder,BatchDeleteBuildsResponse>,SdkBuilder<BatchDeleteBuildsResponse.Builder,BatchDeleteBuildsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- BatchDeleteBuildsResponse
public static interface BatchDeleteBuildsResponse.Builder extends CodeBuildResponse.Builder, SdkPojo, CopyableBuilder<BatchDeleteBuildsResponse.Builder,BatchDeleteBuildsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BatchDeleteBuildsResponse.BuilderbuildsDeleted(String... buildsDeleted)The IDs of the builds that were successfully deleted.BatchDeleteBuildsResponse.BuilderbuildsDeleted(Collection<String> buildsDeleted)The IDs of the builds that were successfully deleted.BatchDeleteBuildsResponse.BuilderbuildsNotDeleted(Collection<BuildNotDeleted> buildsNotDeleted)Information about any builds that could not be successfully deleted.BatchDeleteBuildsResponse.BuilderbuildsNotDeleted(Consumer<BuildNotDeleted.Builder>... buildsNotDeleted)Information about any builds that could not be successfully deleted.BatchDeleteBuildsResponse.BuilderbuildsNotDeleted(BuildNotDeleted... buildsNotDeleted)Information about any builds that could not be successfully deleted.-
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
-
buildsDeleted
BatchDeleteBuildsResponse.Builder buildsDeleted(Collection<String> buildsDeleted)
The IDs of the builds that were successfully deleted.
- Parameters:
buildsDeleted- The IDs of the builds that were successfully deleted.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
buildsDeleted
BatchDeleteBuildsResponse.Builder buildsDeleted(String... buildsDeleted)
The IDs of the builds that were successfully deleted.
- Parameters:
buildsDeleted- The IDs of the builds that were successfully deleted.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
buildsNotDeleted
BatchDeleteBuildsResponse.Builder buildsNotDeleted(Collection<BuildNotDeleted> buildsNotDeleted)
Information about any builds that could not be successfully deleted.
- Parameters:
buildsNotDeleted- Information about any builds that could not be successfully deleted.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
buildsNotDeleted
BatchDeleteBuildsResponse.Builder buildsNotDeleted(BuildNotDeleted... buildsNotDeleted)
Information about any builds that could not be successfully deleted.
- Parameters:
buildsNotDeleted- Information about any builds that could not be successfully deleted.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
buildsNotDeleted
BatchDeleteBuildsResponse.Builder buildsNotDeleted(Consumer<BuildNotDeleted.Builder>... buildsNotDeleted)
Information about any builds that could not be successfully deleted.
This is a convenience method that creates an instance of theBuildNotDeleted.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)
-
-