Interface Filter.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<Filter.Builder,Filter>,SdkBuilder<Filter.Builder,Filter>,SdkPojo
- Enclosing class:
- Filter
public static interface Filter.Builder extends SdkPojo, CopyableBuilder<Filter.Builder,Filter>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Filter.Buildername(String name)Name of the filter.Filter.Buildervalues(String... values)The value of the filter, which is case-sensitive.Filter.Buildervalues(Collection<String> values)The value of the filter, which is case-sensitive.-
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
Filter.Builder name(String name)
Name of the filter. Filter names are case-sensitive.
- Parameters:
name- Name of the filter. Filter names are case-sensitive.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
values
Filter.Builder values(Collection<String> values)
The value of the filter, which is case-sensitive. You can only specify one value for the filter.
- Parameters:
values- The value of the filter, which is case-sensitive. You can only specify one value for the filter.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
values
Filter.Builder values(String... values)
The value of the filter, which is case-sensitive. You can only specify one value for the filter.
- Parameters:
values- The value of the filter, which is case-sensitive. You can only specify one value for the filter.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-