Interface BatchGetBlueprintsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder
,Buildable
,CopyableBuilder<BatchGetBlueprintsResponse.Builder,BatchGetBlueprintsResponse>
,GlueResponse.Builder
,SdkBuilder<BatchGetBlueprintsResponse.Builder,BatchGetBlueprintsResponse>
,SdkPojo
,SdkResponse.Builder
- Enclosing class:
- BatchGetBlueprintsResponse
public static interface BatchGetBlueprintsResponse.Builder extends GlueResponse.Builder, SdkPojo, CopyableBuilder<BatchGetBlueprintsResponse.Builder,BatchGetBlueprintsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BatchGetBlueprintsResponse.Builder
blueprints(Collection<Blueprint> blueprints)
Returns a list of blueprint as aBlueprints
object.BatchGetBlueprintsResponse.Builder
blueprints(Consumer<Blueprint.Builder>... blueprints)
Returns a list of blueprint as aBlueprints
object.BatchGetBlueprintsResponse.Builder
blueprints(Blueprint... blueprints)
Returns a list of blueprint as aBlueprints
object.BatchGetBlueprintsResponse.Builder
missingBlueprints(String... missingBlueprints)
Returns a list ofBlueprintNames
that were not found.BatchGetBlueprintsResponse.Builder
missingBlueprints(Collection<String> missingBlueprints)
Returns a list ofBlueprintNames
that were not found.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.glue.model.GlueResponse.Builder
build, responseMetadata, responseMetadata
-
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
-
blueprints
BatchGetBlueprintsResponse.Builder blueprints(Collection<Blueprint> blueprints)
Returns a list of blueprint as a
Blueprints
object.- Parameters:
blueprints
- Returns a list of blueprint as aBlueprints
object.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
blueprints
BatchGetBlueprintsResponse.Builder blueprints(Blueprint... blueprints)
Returns a list of blueprint as a
Blueprints
object.- Parameters:
blueprints
- Returns a list of blueprint as aBlueprints
object.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
blueprints
BatchGetBlueprintsResponse.Builder blueprints(Consumer<Blueprint.Builder>... blueprints)
Returns a list of blueprint as a
This is a convenience method that creates an instance of theBlueprints
object.Blueprint.Builder
avoiding the need to create one manually viaBlueprint.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed to#blueprints(List
.) - Parameters:
blueprints
- a consumer that will call methods onBlueprint.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#blueprints(java.util.Collection
)
-
missingBlueprints
BatchGetBlueprintsResponse.Builder missingBlueprints(Collection<String> missingBlueprints)
Returns a list of
BlueprintNames
that were not found.- Parameters:
missingBlueprints
- Returns a list ofBlueprintNames
that were not found.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
missingBlueprints
BatchGetBlueprintsResponse.Builder missingBlueprints(String... missingBlueprints)
Returns a list of
BlueprintNames
that were not found.- Parameters:
missingBlueprints
- Returns a list ofBlueprintNames
that were not found.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-