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