Interface ListProcessingJobsRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder
,Buildable
,CopyableBuilder<ListProcessingJobsRequest.Builder,ListProcessingJobsRequest>
,SageMakerRequest.Builder
,SdkBuilder<ListProcessingJobsRequest.Builder,ListProcessingJobsRequest>
,SdkPojo
,SdkRequest.Builder
- Enclosing class:
- ListProcessingJobsRequest
public static interface ListProcessingJobsRequest.Builder extends SageMakerRequest.Builder, SdkPojo, CopyableBuilder<ListProcessingJobsRequest.Builder,ListProcessingJobsRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListProcessingJobsRequest.Builder
creationTimeAfter(Instant creationTimeAfter)
A filter that returns only processing jobs created after the specified time.ListProcessingJobsRequest.Builder
creationTimeBefore(Instant creationTimeBefore)
A filter that returns only processing jobs created after the specified time.ListProcessingJobsRequest.Builder
lastModifiedTimeAfter(Instant lastModifiedTimeAfter)
A filter that returns only processing jobs modified after the specified time.ListProcessingJobsRequest.Builder
lastModifiedTimeBefore(Instant lastModifiedTimeBefore)
A filter that returns only processing jobs modified before the specified time.ListProcessingJobsRequest.Builder
maxResults(Integer maxResults)
The maximum number of processing jobs to return in the response.ListProcessingJobsRequest.Builder
nameContains(String nameContains)
A string in the processing job name.ListProcessingJobsRequest.Builder
nextToken(String nextToken)
If the result of the previousListProcessingJobs
request was truncated, the response includes aNextToken
.ListProcessingJobsRequest.Builder
overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
ListProcessingJobsRequest.Builder
overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
ListProcessingJobsRequest.Builder
sortBy(String sortBy)
The field to sort results by.ListProcessingJobsRequest.Builder
sortBy(SortBy sortBy)
The field to sort results by.ListProcessingJobsRequest.Builder
sortOrder(String sortOrder)
The sort order for results.ListProcessingJobsRequest.Builder
sortOrder(SortOrder sortOrder)
The sort order for results.ListProcessingJobsRequest.Builder
statusEquals(String statusEquals)
A filter that retrieves only processing jobs with a specific status.ListProcessingJobsRequest.Builder
statusEquals(ProcessingJobStatus statusEquals)
A filter that retrieves only processing jobs with a specific status.-
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
-
creationTimeAfter
ListProcessingJobsRequest.Builder creationTimeAfter(Instant creationTimeAfter)
A filter that returns only processing jobs created after the specified time.
- Parameters:
creationTimeAfter
- A filter that returns only processing jobs created after the specified time.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
creationTimeBefore
ListProcessingJobsRequest.Builder creationTimeBefore(Instant creationTimeBefore)
A filter that returns only processing jobs created after the specified time.
- Parameters:
creationTimeBefore
- A filter that returns only processing jobs created after the specified time.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
lastModifiedTimeAfter
ListProcessingJobsRequest.Builder lastModifiedTimeAfter(Instant lastModifiedTimeAfter)
A filter that returns only processing jobs modified after the specified time.
- Parameters:
lastModifiedTimeAfter
- A filter that returns only processing jobs modified after the specified time.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
lastModifiedTimeBefore
ListProcessingJobsRequest.Builder lastModifiedTimeBefore(Instant lastModifiedTimeBefore)
A filter that returns only processing jobs modified before the specified time.
- Parameters:
lastModifiedTimeBefore
- A filter that returns only processing jobs modified before the specified time.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
nameContains
ListProcessingJobsRequest.Builder nameContains(String nameContains)
A string in the processing job name. This filter returns only processing jobs whose name contains the specified string.
- Parameters:
nameContains
- A string in the processing job name. This filter returns only processing jobs whose name contains the specified string.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
statusEquals
ListProcessingJobsRequest.Builder statusEquals(String statusEquals)
A filter that retrieves only processing jobs with a specific status.
- Parameters:
statusEquals
- A filter that retrieves only processing jobs with a specific status.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ProcessingJobStatus
,ProcessingJobStatus
-
statusEquals
ListProcessingJobsRequest.Builder statusEquals(ProcessingJobStatus statusEquals)
A filter that retrieves only processing jobs with a specific status.
- Parameters:
statusEquals
- A filter that retrieves only processing jobs with a specific status.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ProcessingJobStatus
,ProcessingJobStatus
-
sortBy
ListProcessingJobsRequest.Builder sortBy(String sortBy)
The field to sort results by. The default is
CreationTime
.
-
sortBy
ListProcessingJobsRequest.Builder sortBy(SortBy sortBy)
The field to sort results by. The default is
CreationTime
.
-
sortOrder
ListProcessingJobsRequest.Builder sortOrder(String sortOrder)
The sort order for results. The default is
Ascending
.
-
sortOrder
ListProcessingJobsRequest.Builder sortOrder(SortOrder sortOrder)
The sort order for results. The default is
Ascending
.
-
nextToken
ListProcessingJobsRequest.Builder nextToken(String nextToken)
If the result of the previous
ListProcessingJobs
request was truncated, the response includes aNextToken
. To retrieve the next set of processing jobs, use the token in the next request.- Parameters:
nextToken
- If the result of the previousListProcessingJobs
request was truncated, the response includes aNextToken
. To retrieve the next set of processing jobs, use the token in the next request.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
maxResults
ListProcessingJobsRequest.Builder maxResults(Integer maxResults)
The maximum number of processing jobs to return in the response.
- Parameters:
maxResults
- The maximum number of processing jobs to return in the response.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
overrideConfiguration
ListProcessingJobsRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
-
overrideConfiguration
ListProcessingJobsRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
-
-