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