Interface Filter.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<Filter.Builder,Filter>,SdkBuilder<Filter.Builder,Filter>,SdkPojo
- Enclosing class:
- Filter
@Mutable @NotThreadSafe 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)The name of the filter as specified for aDescribe*or similar operation.Filter.Buildervalues(String... values)The filter value, which can specify one or more values used to narrow the returned results.Filter.Buildervalues(Collection<String> values)The filter value, which can specify one or more values used to narrow the returned 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
-
name
Filter.Builder name(String name)
The name of the filter as specified for a
Describe*or similar operation.- Parameters:
name- The name of the filter as specified for aDescribe*or similar operation.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
values
Filter.Builder values(Collection<String> values)
The filter value, which can specify one or more values used to narrow the returned results.
- Parameters:
values- The filter value, which can specify one or more values used to narrow the returned results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
values
Filter.Builder values(String... values)
The filter value, which can specify one or more values used to narrow the returned results.
- Parameters:
values- The filter value, which can specify one or more values used to narrow the returned results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-