Interface GetMlTaskRunsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<GetMlTaskRunsResponse.Builder,GetMlTaskRunsResponse>,GlueResponse.Builder,SdkBuilder<GetMlTaskRunsResponse.Builder,GetMlTaskRunsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- GetMlTaskRunsResponse
public static interface GetMlTaskRunsResponse.Builder extends GlueResponse.Builder, SdkPojo, CopyableBuilder<GetMlTaskRunsResponse.Builder,GetMlTaskRunsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description GetMlTaskRunsResponse.BuildernextToken(String nextToken)A pagination token, if more results are available.GetMlTaskRunsResponse.BuildertaskRuns(Collection<TaskRun> taskRuns)A list of task runs that are associated with the transform.GetMlTaskRunsResponse.BuildertaskRuns(Consumer<TaskRun.Builder>... taskRuns)A list of task runs that are associated with the transform.GetMlTaskRunsResponse.BuildertaskRuns(TaskRun... taskRuns)A list of task runs that are associated with the transform.-
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
-
taskRuns
GetMlTaskRunsResponse.Builder taskRuns(Collection<TaskRun> taskRuns)
A list of task runs that are associated with the transform.
- Parameters:
taskRuns- A list of task runs that are associated with the transform.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
taskRuns
GetMlTaskRunsResponse.Builder taskRuns(TaskRun... taskRuns)
A list of task runs that are associated with the transform.
- Parameters:
taskRuns- A list of task runs that are associated with the transform.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
taskRuns
GetMlTaskRunsResponse.Builder taskRuns(Consumer<TaskRun.Builder>... taskRuns)
A list of task runs that are associated with the transform.
This is a convenience method that creates an instance of theTaskRun.Builderavoiding the need to create one manually viaTaskRun.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#taskRuns(List.) - Parameters:
taskRuns- a consumer that will call methods onTaskRun.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#taskRuns(java.util.Collection)
-
nextToken
GetMlTaskRunsResponse.Builder nextToken(String nextToken)
A pagination token, if more results are available.
- Parameters:
nextToken- A pagination token, if more results are available.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-