Interface TopicsDetectionJobFilter.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<TopicsDetectionJobFilter.Builder,TopicsDetectionJobFilter>,SdkBuilder<TopicsDetectionJobFilter.Builder,TopicsDetectionJobFilter>,SdkPojo
- Enclosing class:
- TopicsDetectionJobFilter
public static interface TopicsDetectionJobFilter.Builder extends SdkPojo, CopyableBuilder<TopicsDetectionJobFilter.Builder,TopicsDetectionJobFilter>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TopicsDetectionJobFilter.BuilderjobName(String jobName)TopicsDetectionJobFilter.BuilderjobStatus(String jobStatus)Filters the list of topic detection jobs based on job status.TopicsDetectionJobFilter.BuilderjobStatus(JobStatus jobStatus)Filters the list of topic detection jobs based on job status.TopicsDetectionJobFilter.BuildersubmitTimeAfter(Instant submitTimeAfter)Filters the list of jobs based on the time that the job was submitted for processing.TopicsDetectionJobFilter.BuildersubmitTimeBefore(Instant submitTimeBefore)Filters the list of jobs based on the time that the job was submitted for processing.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
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
-
jobName
TopicsDetectionJobFilter.Builder jobName(String jobName)
- Parameters:
jobName-- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
jobStatus
TopicsDetectionJobFilter.Builder jobStatus(String jobStatus)
Filters the list of topic detection jobs based on job status. Returns only jobs with the specified status.
-
jobStatus
TopicsDetectionJobFilter.Builder jobStatus(JobStatus jobStatus)
Filters the list of topic detection jobs based on job status. Returns only jobs with the specified status.
-
submitTimeBefore
TopicsDetectionJobFilter.Builder submitTimeBefore(Instant submitTimeBefore)
Filters the list of jobs based on the time that the job was submitted for processing. Only returns jobs submitted before the specified time. Jobs are returned in descending order, newest to oldest.
- Parameters:
submitTimeBefore- Filters the list of jobs based on the time that the job was submitted for processing. Only returns jobs submitted before the specified time. Jobs are returned in descending order, newest to oldest.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
submitTimeAfter
TopicsDetectionJobFilter.Builder submitTimeAfter(Instant submitTimeAfter)
Filters the list of jobs based on the time that the job was submitted for processing. Only returns jobs submitted after the specified time. Jobs are returned in ascending order, oldest to newest.
- Parameters:
submitTimeAfter- Filters the list of jobs based on the time that the job was submitted for processing. Only returns jobs submitted after the specified time. Jobs are returned in ascending order, oldest to newest.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-