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.Builderblueprints(Collection<Blueprint> blueprints)Returns a list of blueprint as aBlueprintsobject.BatchGetBlueprintsResponse.Builderblueprints(Consumer<Blueprint.Builder>... blueprints)Returns a list of blueprint as aBlueprintsobject.BatchGetBlueprintsResponse.Builderblueprints(Blueprint... blueprints)Returns a list of blueprint as aBlueprintsobject.BatchGetBlueprintsResponse.BuildermissingBlueprints(String... missingBlueprints)Returns a list ofBlueprintNamesthat were not found.BatchGetBlueprintsResponse.BuildermissingBlueprints(Collection<String> missingBlueprints)Returns a list ofBlueprintNamesthat 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
Blueprintsobject.- Parameters:
blueprints- Returns a list of blueprint as aBlueprintsobject.- 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
Blueprintsobject.- Parameters:
blueprints- Returns a list of blueprint as aBlueprintsobject.- 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 theBlueprintsobject.Blueprint.Builderavoiding the need to create one manually viaBlueprint.builder().When the
Consumercompletes,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
BlueprintNamesthat were not found.- Parameters:
missingBlueprints- Returns a list ofBlueprintNamesthat 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
BlueprintNamesthat were not found.- Parameters:
missingBlueprints- Returns a list ofBlueprintNamesthat were not found.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-