Interface BatchGetBuildsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CodeBuildResponse.Builder,CopyableBuilder<BatchGetBuildsResponse.Builder,BatchGetBuildsResponse>,SdkBuilder<BatchGetBuildsResponse.Builder,BatchGetBuildsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- BatchGetBuildsResponse
public static interface BatchGetBuildsResponse.Builder extends CodeBuildResponse.Builder, SdkPojo, CopyableBuilder<BatchGetBuildsResponse.Builder,BatchGetBuildsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BatchGetBuildsResponse.Builderbuilds(Collection<Build> builds)Information about the requested builds.BatchGetBuildsResponse.Builderbuilds(Consumer<Build.Builder>... builds)Information about the requested builds.BatchGetBuildsResponse.Builderbuilds(Build... builds)Information about the requested builds.BatchGetBuildsResponse.BuilderbuildsNotFound(String... buildsNotFound)The IDs of builds for which information could not be found.BatchGetBuildsResponse.BuilderbuildsNotFound(Collection<String> buildsNotFound)The IDs of builds for which information could not be found.-
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
-
builds
BatchGetBuildsResponse.Builder builds(Collection<Build> builds)
Information about the requested builds.
- Parameters:
builds- Information about the requested builds.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
builds
BatchGetBuildsResponse.Builder builds(Build... builds)
Information about the requested builds.
- Parameters:
builds- Information about the requested builds.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
builds
BatchGetBuildsResponse.Builder builds(Consumer<Build.Builder>... builds)
Information about the requested builds.
This is a convenience method that creates an instance of theBuild.Builderavoiding the need to create one manually viaBuild.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#builds(List.) - Parameters:
builds- a consumer that will call methods onBuild.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#builds(java.util.Collection)
-
buildsNotFound
BatchGetBuildsResponse.Builder buildsNotFound(Collection<String> buildsNotFound)
The IDs of builds for which information could not be found.
- Parameters:
buildsNotFound- The IDs of builds for which information could not be found.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
buildsNotFound
BatchGetBuildsResponse.Builder buildsNotFound(String... buildsNotFound)
The IDs of builds for which information could not be found.
- Parameters:
buildsNotFound- The IDs of builds for which information could not be found.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-