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