Interface GetBlueprintRunsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<GetBlueprintRunsResponse.Builder,GetBlueprintRunsResponse>,GlueResponse.Builder,SdkBuilder<GetBlueprintRunsResponse.Builder,GetBlueprintRunsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- GetBlueprintRunsResponse
public static interface GetBlueprintRunsResponse.Builder extends GlueResponse.Builder, SdkPojo, CopyableBuilder<GetBlueprintRunsResponse.Builder,GetBlueprintRunsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description GetBlueprintRunsResponse.BuilderblueprintRuns(Collection<BlueprintRun> blueprintRuns)Returns a list ofBlueprintRunobjects.GetBlueprintRunsResponse.BuilderblueprintRuns(Consumer<BlueprintRun.Builder>... blueprintRuns)Returns a list ofBlueprintRunobjects.GetBlueprintRunsResponse.BuilderblueprintRuns(BlueprintRun... blueprintRuns)Returns a list ofBlueprintRunobjects.GetBlueprintRunsResponse.BuildernextToken(String nextToken)A continuation token, if not all blueprint runs have been returned.-
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, sdkFieldNameToField, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
blueprintRuns
GetBlueprintRunsResponse.Builder blueprintRuns(Collection<BlueprintRun> blueprintRuns)
Returns a list of
BlueprintRunobjects.- Parameters:
blueprintRuns- Returns a list ofBlueprintRunobjects.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
blueprintRuns
GetBlueprintRunsResponse.Builder blueprintRuns(BlueprintRun... blueprintRuns)
Returns a list of
BlueprintRunobjects.- Parameters:
blueprintRuns- Returns a list ofBlueprintRunobjects.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
blueprintRuns
GetBlueprintRunsResponse.Builder blueprintRuns(Consumer<BlueprintRun.Builder>... blueprintRuns)
Returns a list of
This is a convenience method that creates an instance of theBlueprintRunobjects.BlueprintRun.Builderavoiding the need to create one manually viaBlueprintRun.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#blueprintRuns(List.) - Parameters:
blueprintRuns- a consumer that will call methods onBlueprintRun.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#blueprintRuns(java.util.Collection)
-
nextToken
GetBlueprintRunsResponse.Builder nextToken(String nextToken)
A continuation token, if not all blueprint runs have been returned.
- Parameters:
nextToken- A continuation token, if not all blueprint runs have been returned.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-