Interface ListJobsFilterTerm.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ListJobsFilterTerm.Builder,ListJobsFilterTerm>,SdkBuilder<ListJobsFilterTerm.Builder,ListJobsFilterTerm>,SdkPojo
- Enclosing class:
- ListJobsFilterTerm
public static interface ListJobsFilterTerm.Builder extends SdkPojo, CopyableBuilder<ListJobsFilterTerm.Builder,ListJobsFilterTerm>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListJobsFilterTerm.Buildercomparator(String comparator)The operator to use to filter the results.ListJobsFilterTerm.Buildercomparator(JobComparator comparator)The operator to use to filter the results.ListJobsFilterTerm.Builderkey(String key)The property to use to filter the results.ListJobsFilterTerm.Builderkey(ListJobsFilterKey key)The property to use to filter the results.ListJobsFilterTerm.Buildervalues(String... values)An array that lists one or more values to use to filter the results.ListJobsFilterTerm.Buildervalues(Collection<String> values)An array that lists one or more values to use to filter the results.-
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
-
comparator
ListJobsFilterTerm.Builder comparator(String comparator)
The operator to use to filter the results.
- Parameters:
comparator- The operator to use to filter the results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
JobComparator,JobComparator
-
comparator
ListJobsFilterTerm.Builder comparator(JobComparator comparator)
The operator to use to filter the results.
- Parameters:
comparator- The operator to use to filter the results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
JobComparator,JobComparator
-
key
ListJobsFilterTerm.Builder key(String key)
The property to use to filter the results.
- Parameters:
key- The property to use to filter the results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ListJobsFilterKey,ListJobsFilterKey
-
key
ListJobsFilterTerm.Builder key(ListJobsFilterKey key)
The property to use to filter the results.
- Parameters:
key- The property to use to filter the results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ListJobsFilterKey,ListJobsFilterKey
-
values
ListJobsFilterTerm.Builder values(Collection<String> values)
An array that lists one or more values to use to filter the results.
- Parameters:
values- An array that lists one or more values to use to filter the results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
values
ListJobsFilterTerm.Builder values(String... values)
An array that lists one or more values to use to filter the results.
- Parameters:
values- An array that lists one or more values to use to filter the results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-