Interface ListPipelineExecutionStepsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder
,Buildable
,CopyableBuilder<ListPipelineExecutionStepsResponse.Builder,ListPipelineExecutionStepsResponse>
,SageMakerResponse.Builder
,SdkBuilder<ListPipelineExecutionStepsResponse.Builder,ListPipelineExecutionStepsResponse>
,SdkPojo
,SdkResponse.Builder
- Enclosing class:
- ListPipelineExecutionStepsResponse
public static interface ListPipelineExecutionStepsResponse.Builder extends SageMakerResponse.Builder, SdkPojo, CopyableBuilder<ListPipelineExecutionStepsResponse.Builder,ListPipelineExecutionStepsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListPipelineExecutionStepsResponse.Builder
nextToken(String nextToken)
If the result of the previousListPipelineExecutionSteps
request was truncated, the response includes aNextToken
.ListPipelineExecutionStepsResponse.Builder
pipelineExecutionSteps(Collection<PipelineExecutionStep> pipelineExecutionSteps)
A list ofPipeLineExecutionStep
objects.ListPipelineExecutionStepsResponse.Builder
pipelineExecutionSteps(Consumer<PipelineExecutionStep.Builder>... pipelineExecutionSteps)
A list ofPipeLineExecutionStep
objects.ListPipelineExecutionStepsResponse.Builder
pipelineExecutionSteps(PipelineExecutionStep... pipelineExecutionSteps)
A list ofPipeLineExecutionStep
objects.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.sagemaker.model.SageMakerResponse.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
-
pipelineExecutionSteps
ListPipelineExecutionStepsResponse.Builder pipelineExecutionSteps(Collection<PipelineExecutionStep> pipelineExecutionSteps)
A list of
PipeLineExecutionStep
objects. EachPipeLineExecutionStep
consists of StepName, StartTime, EndTime, StepStatus, and Metadata. Metadata is an object with properties for each job that contains relevant information about the job created by the step.- Parameters:
pipelineExecutionSteps
- A list ofPipeLineExecutionStep
objects. EachPipeLineExecutionStep
consists of StepName, StartTime, EndTime, StepStatus, and Metadata. Metadata is an object with properties for each job that contains relevant information about the job created by the step.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
pipelineExecutionSteps
ListPipelineExecutionStepsResponse.Builder pipelineExecutionSteps(PipelineExecutionStep... pipelineExecutionSteps)
A list of
PipeLineExecutionStep
objects. EachPipeLineExecutionStep
consists of StepName, StartTime, EndTime, StepStatus, and Metadata. Metadata is an object with properties for each job that contains relevant information about the job created by the step.- Parameters:
pipelineExecutionSteps
- A list ofPipeLineExecutionStep
objects. EachPipeLineExecutionStep
consists of StepName, StartTime, EndTime, StepStatus, and Metadata. Metadata is an object with properties for each job that contains relevant information about the job created by the step.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
pipelineExecutionSteps
ListPipelineExecutionStepsResponse.Builder pipelineExecutionSteps(Consumer<PipelineExecutionStep.Builder>... pipelineExecutionSteps)
A list of
This is a convenience method that creates an instance of thePipeLineExecutionStep
objects. EachPipeLineExecutionStep
consists of StepName, StartTime, EndTime, StepStatus, and Metadata. Metadata is an object with properties for each job that contains relevant information about the job created by the step.PipelineExecutionStep.Builder
avoiding the need to create one manually viaPipelineExecutionStep.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed to#pipelineExecutionSteps(List
.) - Parameters:
pipelineExecutionSteps
- a consumer that will call methods onPipelineExecutionStep.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#pipelineExecutionSteps(java.util.Collection
)
-
nextToken
ListPipelineExecutionStepsResponse.Builder nextToken(String nextToken)
If the result of the previous
ListPipelineExecutionSteps
request was truncated, the response includes aNextToken
. To retrieve the next set of pipeline execution steps, use the token in the next request.- Parameters:
nextToken
- If the result of the previousListPipelineExecutionSteps
request was truncated, the response includes aNextToken
. To retrieve the next set of pipeline execution steps, use the token in the next request.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-