Interface TaskFilter.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<TaskFilter.Builder,TaskFilter>,SdkBuilder<TaskFilter.Builder,TaskFilter>,SdkPojo
- Enclosing class:
- TaskFilter
public static interface TaskFilter.Builder extends SdkPojo, CopyableBuilder<TaskFilter.Builder,TaskFilter>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TaskFilter.Buildername(String name)The name of the filter being used.TaskFilter.Buildername(TaskFilterName name)The name of the filter being used.TaskFilter.Builderoperator(String operator)The operator that is used to compare filter values (for example,EqualsorContains).TaskFilter.Builderoperator(Operator operator)The operator that is used to compare filter values (for example,EqualsorContains).TaskFilter.Buildervalues(String... values)The values that you want to filter for.TaskFilter.Buildervalues(Collection<String> values)The values that you want to filter for.-
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
-
name
TaskFilter.Builder name(String name)
The name of the filter being used. Each API call supports a list of filters that are available for it. For example,
LocationIdforListTasks.- Parameters:
name- The name of the filter being used. Each API call supports a list of filters that are available for it. For example,LocationIdforListTasks.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
TaskFilterName,TaskFilterName
-
name
TaskFilter.Builder name(TaskFilterName name)
The name of the filter being used. Each API call supports a list of filters that are available for it. For example,
LocationIdforListTasks.- Parameters:
name- The name of the filter being used. Each API call supports a list of filters that are available for it. For example,LocationIdforListTasks.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
TaskFilterName,TaskFilterName
-
values
TaskFilter.Builder values(Collection<String> values)
The values that you want to filter for. For example, you might want to display only tasks for a specific destination location.
- Parameters:
values- The values that you want to filter for. For example, you might want to display only tasks for a specific destination location.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
values
TaskFilter.Builder values(String... values)
The values that you want to filter for. For example, you might want to display only tasks for a specific destination location.
- Parameters:
values- The values that you want to filter for. For example, you might want to display only tasks for a specific destination location.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
operator
TaskFilter.Builder operator(String operator)
The operator that is used to compare filter values (for example,
EqualsorContains).
-
operator
TaskFilter.Builder operator(Operator operator)
The operator that is used to compare filter values (for example,
EqualsorContains).
-
-