Interface ListPipelineExecutionsRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder
,Buildable
,CopyableBuilder<ListPipelineExecutionsRequest.Builder,ListPipelineExecutionsRequest>
,SageMakerRequest.Builder
,SdkBuilder<ListPipelineExecutionsRequest.Builder,ListPipelineExecutionsRequest>
,SdkPojo
,SdkRequest.Builder
- Enclosing class:
- ListPipelineExecutionsRequest
public static interface ListPipelineExecutionsRequest.Builder extends SageMakerRequest.Builder, SdkPojo, CopyableBuilder<ListPipelineExecutionsRequest.Builder,ListPipelineExecutionsRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListPipelineExecutionsRequest.Builder
createdAfter(Instant createdAfter)
A filter that returns the pipeline executions that were created after a specified time.ListPipelineExecutionsRequest.Builder
createdBefore(Instant createdBefore)
A filter that returns the pipeline executions that were created before a specified time.ListPipelineExecutionsRequest.Builder
maxResults(Integer maxResults)
The maximum number of pipeline executions to return in the response.ListPipelineExecutionsRequest.Builder
nextToken(String nextToken)
If the result of the previousListPipelineExecutions
request was truncated, the response includes aNextToken
.ListPipelineExecutionsRequest.Builder
overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
ListPipelineExecutionsRequest.Builder
overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
ListPipelineExecutionsRequest.Builder
pipelineName(String pipelineName)
The name or Amazon Resource Name (ARN) of the pipeline.ListPipelineExecutionsRequest.Builder
sortBy(String sortBy)
The field by which to sort results.ListPipelineExecutionsRequest.Builder
sortBy(SortPipelineExecutionsBy sortBy)
The field by which to sort results.ListPipelineExecutionsRequest.Builder
sortOrder(String sortOrder)
The sort order for results.ListPipelineExecutionsRequest.Builder
sortOrder(SortOrder sortOrder)
The sort order for results.-
Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.sagemaker.model.SageMakerRequest.Builder
build
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
pipelineName
ListPipelineExecutionsRequest.Builder pipelineName(String pipelineName)
The name or Amazon Resource Name (ARN) of the pipeline.
- Parameters:
pipelineName
- The name or Amazon Resource Name (ARN) of the pipeline.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
createdAfter
ListPipelineExecutionsRequest.Builder createdAfter(Instant createdAfter)
A filter that returns the pipeline executions that were created after a specified time.
- Parameters:
createdAfter
- A filter that returns the pipeline executions that were created after a specified time.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
createdBefore
ListPipelineExecutionsRequest.Builder createdBefore(Instant createdBefore)
A filter that returns the pipeline executions that were created before a specified time.
- Parameters:
createdBefore
- A filter that returns the pipeline executions that were created before a specified time.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
sortBy
ListPipelineExecutionsRequest.Builder sortBy(String sortBy)
The field by which to sort results. The default is
CreatedTime
.- Parameters:
sortBy
- The field by which to sort results. The default isCreatedTime
.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
SortPipelineExecutionsBy
,SortPipelineExecutionsBy
-
sortBy
ListPipelineExecutionsRequest.Builder sortBy(SortPipelineExecutionsBy sortBy)
The field by which to sort results. The default is
CreatedTime
.- Parameters:
sortBy
- The field by which to sort results. The default isCreatedTime
.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
SortPipelineExecutionsBy
,SortPipelineExecutionsBy
-
sortOrder
ListPipelineExecutionsRequest.Builder sortOrder(String sortOrder)
The sort order for results.
-
sortOrder
ListPipelineExecutionsRequest.Builder sortOrder(SortOrder sortOrder)
The sort order for results.
-
nextToken
ListPipelineExecutionsRequest.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.
-
maxResults
ListPipelineExecutionsRequest.Builder maxResults(Integer maxResults)
The maximum number of pipeline executions to return in the response.
- Parameters:
maxResults
- The maximum number of pipeline executions to return in the response.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
overrideConfiguration
ListPipelineExecutionsRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
-
overrideConfiguration
ListPipelineExecutionsRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
-
-