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.BuildernextToken(String nextToken)If the result of the previousListPipelineExecutionStepsrequest was truncated, the response includes aNextToken.ListPipelineExecutionStepsResponse.BuilderpipelineExecutionSteps(Collection<PipelineExecutionStep> pipelineExecutionSteps)A list ofPipeLineExecutionStepobjects.ListPipelineExecutionStepsResponse.BuilderpipelineExecutionSteps(Consumer<PipelineExecutionStep.Builder>... pipelineExecutionSteps)A list ofPipeLineExecutionStepobjects.ListPipelineExecutionStepsResponse.BuilderpipelineExecutionSteps(PipelineExecutionStep... pipelineExecutionSteps)A list ofPipeLineExecutionStepobjects.-
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
PipeLineExecutionStepobjects. EachPipeLineExecutionStepconsists 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 ofPipeLineExecutionStepobjects. EachPipeLineExecutionStepconsists 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
PipeLineExecutionStepobjects. EachPipeLineExecutionStepconsists 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 ofPipeLineExecutionStepobjects. EachPipeLineExecutionStepconsists 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 thePipeLineExecutionStepobjects. EachPipeLineExecutionStepconsists 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.Builderavoiding the need to create one manually viaPipelineExecutionStep.builder().When the
Consumercompletes,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
ListPipelineExecutionStepsrequest 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 previousListPipelineExecutionStepsrequest 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.
-
-