Interface ListPipelinesRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder
,Buildable
,CopyableBuilder<ListPipelinesRequest.Builder,ListPipelinesRequest>
,SageMakerRequest.Builder
,SdkBuilder<ListPipelinesRequest.Builder,ListPipelinesRequest>
,SdkPojo
,SdkRequest.Builder
- Enclosing class:
- ListPipelinesRequest
public static interface ListPipelinesRequest.Builder extends SageMakerRequest.Builder, SdkPojo, CopyableBuilder<ListPipelinesRequest.Builder,ListPipelinesRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListPipelinesRequest.Builder
createdAfter(Instant createdAfter)
A filter that returns the pipelines that were created after a specified time.ListPipelinesRequest.Builder
createdBefore(Instant createdBefore)
A filter that returns the pipelines that were created before a specified time.ListPipelinesRequest.Builder
maxResults(Integer maxResults)
The maximum number of pipelines to return in the response.ListPipelinesRequest.Builder
nextToken(String nextToken)
If the result of the previousListPipelines
request was truncated, the response includes aNextToken
.ListPipelinesRequest.Builder
overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
ListPipelinesRequest.Builder
overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
ListPipelinesRequest.Builder
pipelineNamePrefix(String pipelineNamePrefix)
The prefix of the pipeline name.ListPipelinesRequest.Builder
sortBy(String sortBy)
The field by which to sort results.ListPipelinesRequest.Builder
sortBy(SortPipelinesBy sortBy)
The field by which to sort results.ListPipelinesRequest.Builder
sortOrder(String sortOrder)
The sort order for results.ListPipelinesRequest.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, sdkFields
-
-
-
-
Method Detail
-
pipelineNamePrefix
ListPipelinesRequest.Builder pipelineNamePrefix(String pipelineNamePrefix)
The prefix of the pipeline name.
- Parameters:
pipelineNamePrefix
- The prefix of the pipeline name.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
createdAfter
ListPipelinesRequest.Builder createdAfter(Instant createdAfter)
A filter that returns the pipelines that were created after a specified time.
- Parameters:
createdAfter
- A filter that returns the pipelines that were created after a specified time.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
createdBefore
ListPipelinesRequest.Builder createdBefore(Instant createdBefore)
A filter that returns the pipelines that were created before a specified time.
- Parameters:
createdBefore
- A filter that returns the pipelines that were created before a specified time.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
sortBy
ListPipelinesRequest.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:
SortPipelinesBy
,SortPipelinesBy
-
sortBy
ListPipelinesRequest.Builder sortBy(SortPipelinesBy 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:
SortPipelinesBy
,SortPipelinesBy
-
sortOrder
ListPipelinesRequest.Builder sortOrder(String sortOrder)
The sort order for results.
-
sortOrder
ListPipelinesRequest.Builder sortOrder(SortOrder sortOrder)
The sort order for results.
-
nextToken
ListPipelinesRequest.Builder nextToken(String nextToken)
If the result of the previous
ListPipelines
request was truncated, the response includes aNextToken
. To retrieve the next set of pipelines, use the token in the next request.- Parameters:
nextToken
- If the result of the previousListPipelines
request was truncated, the response includes aNextToken
. To retrieve the next set of pipelines, use the token in the next request.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
maxResults
ListPipelinesRequest.Builder maxResults(Integer maxResults)
The maximum number of pipelines to return in the response.
- Parameters:
maxResults
- The maximum number of pipelines to return in the response.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
overrideConfiguration
ListPipelinesRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
-
overrideConfiguration
ListPipelinesRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
-
-