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.Buildercondition(String condition)A conditional operator.Filter.Buildername(String name)The name of the filter.Filter.Buildervalues(String... values)A string value on which to filter.Filter.Buildervalues(Collection<String> values)A string value on which to filter.-
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)
The name of the filter.
- Parameters:
name- The name of the filter.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
values
Filter.Builder values(Collection<String> values)
A string value on which to filter. For example, if you choose the
destinationServer.osVersionfilter name, you could specifyUbuntufor the value.- Parameters:
values- A string value on which to filter. For example, if you choose thedestinationServer.osVersionfilter name, you could specifyUbuntufor the value.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
values
Filter.Builder values(String... values)
A string value on which to filter. For example, if you choose the
destinationServer.osVersionfilter name, you could specifyUbuntufor the value.- Parameters:
values- A string value on which to filter. For example, if you choose thedestinationServer.osVersionfilter name, you could specifyUbuntufor the value.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
condition
Filter.Builder condition(String condition)
A conditional operator. The following operators are valid: EQUALS, NOT_EQUALS, CONTAINS, NOT_CONTAINS. If you specify multiple filters, the system utilizes all filters as though concatenated by AND. If you specify multiple values for a particular filter, the system differentiates the values using OR. Calling either DescribeConfigurations or ListConfigurations returns attributes of matching configuration items.
- Parameters:
condition- A conditional operator. The following operators are valid: EQUALS, NOT_EQUALS, CONTAINS, NOT_CONTAINS. If you specify multiple filters, the system utilizes all filters as though concatenated by AND. If you specify multiple values for a particular filter, the system differentiates the values using OR. Calling either DescribeConfigurations or ListConfigurations returns attributes of matching configuration items.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-