Interface ListPipelineExecutionsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder
,Buildable
,CopyableBuilder<ListPipelineExecutionsResponse.Builder,ListPipelineExecutionsResponse>
,SageMakerResponse.Builder
,SdkBuilder<ListPipelineExecutionsResponse.Builder,ListPipelineExecutionsResponse>
,SdkPojo
,SdkResponse.Builder
- Enclosing class:
- ListPipelineExecutionsResponse
public static interface ListPipelineExecutionsResponse.Builder extends SageMakerResponse.Builder, SdkPojo, CopyableBuilder<ListPipelineExecutionsResponse.Builder,ListPipelineExecutionsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListPipelineExecutionsResponse.Builder
nextToken(String nextToken)
If the result of the previousListPipelineExecutions
request was truncated, the response includes aNextToken
.ListPipelineExecutionsResponse.Builder
pipelineExecutionSummaries(Collection<PipelineExecutionSummary> pipelineExecutionSummaries)
Contains a sorted list of pipeline execution summary objects matching the specified filters.ListPipelineExecutionsResponse.Builder
pipelineExecutionSummaries(Consumer<PipelineExecutionSummary.Builder>... pipelineExecutionSummaries)
Contains a sorted list of pipeline execution summary objects matching the specified filters.ListPipelineExecutionsResponse.Builder
pipelineExecutionSummaries(PipelineExecutionSummary... pipelineExecutionSummaries)
Contains a sorted list of pipeline execution summary objects matching the specified filters.-
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
-
pipelineExecutionSummaries
ListPipelineExecutionsResponse.Builder pipelineExecutionSummaries(Collection<PipelineExecutionSummary> pipelineExecutionSummaries)
Contains a sorted list of pipeline execution summary objects matching the specified filters. Each run summary includes the Amazon Resource Name (ARN) of the pipeline execution, the run date, and the status. This list can be empty.
- Parameters:
pipelineExecutionSummaries
- Contains a sorted list of pipeline execution summary objects matching the specified filters. Each run summary includes the Amazon Resource Name (ARN) of the pipeline execution, the run date, and the status. This list can be empty.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
pipelineExecutionSummaries
ListPipelineExecutionsResponse.Builder pipelineExecutionSummaries(PipelineExecutionSummary... pipelineExecutionSummaries)
Contains a sorted list of pipeline execution summary objects matching the specified filters. Each run summary includes the Amazon Resource Name (ARN) of the pipeline execution, the run date, and the status. This list can be empty.
- Parameters:
pipelineExecutionSummaries
- Contains a sorted list of pipeline execution summary objects matching the specified filters. Each run summary includes the Amazon Resource Name (ARN) of the pipeline execution, the run date, and the status. This list can be empty.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
pipelineExecutionSummaries
ListPipelineExecutionsResponse.Builder pipelineExecutionSummaries(Consumer<PipelineExecutionSummary.Builder>... pipelineExecutionSummaries)
Contains a sorted list of pipeline execution summary objects matching the specified filters. Each run summary includes the Amazon Resource Name (ARN) of the pipeline execution, the run date, and the status. This list can be empty.
This is a convenience method that creates an instance of thePipelineExecutionSummary.Builder
avoiding the need to create one manually viaPipelineExecutionSummary.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed to#pipelineExecutionSummaries(List
.) - Parameters:
pipelineExecutionSummaries
- a consumer that will call methods onPipelineExecutionSummary.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#pipelineExecutionSummaries(java.util.Collection
)
-
nextToken
ListPipelineExecutionsResponse.Builder nextToken(String nextToken)
If the result of the previous
ListPipelineExecutions
request was truncated, the response includes aNextToken
. To retrieve the next set of pipeline executions, use the token in the next request.- Parameters:
nextToken
- If the result of the previousListPipelineExecutions
request was truncated, the response includes aNextToken
. To retrieve the next set of pipeline executions, use the token in the next request.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-