Interface OpsItemFilter.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<OpsItemFilter.Builder,OpsItemFilter>,SdkBuilder<OpsItemFilter.Builder,OpsItemFilter>,SdkPojo
- Enclosing class:
- OpsItemFilter
public static interface OpsItemFilter.Builder extends SdkPojo, CopyableBuilder<OpsItemFilter.Builder,OpsItemFilter>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description OpsItemFilter.Builderkey(String key)The name of the filter.OpsItemFilter.Builderkey(OpsItemFilterKey key)The name of the filter.OpsItemFilter.Builderoperator(String operator)The operator used by the filter call.OpsItemFilter.Builderoperator(OpsItemFilterOperator operator)The operator used by the filter call.OpsItemFilter.Buildervalues(String... values)The filter value.OpsItemFilter.Buildervalues(Collection<String> values)The filter value.-
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
-
key
OpsItemFilter.Builder key(String key)
The name of the filter.
- Parameters:
key- The name of the filter.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
OpsItemFilterKey,OpsItemFilterKey
-
key
OpsItemFilter.Builder key(OpsItemFilterKey key)
The name of the filter.
- Parameters:
key- The name of the filter.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
OpsItemFilterKey,OpsItemFilterKey
-
values
OpsItemFilter.Builder values(Collection<String> values)
The filter value.
- Parameters:
values- The filter value.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
values
OpsItemFilter.Builder values(String... values)
The filter value.
- Parameters:
values- The filter value.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
operator
OpsItemFilter.Builder operator(String operator)
The operator used by the filter call.
- Parameters:
operator- The operator used by the filter call.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
OpsItemFilterOperator,OpsItemFilterOperator
-
operator
OpsItemFilter.Builder operator(OpsItemFilterOperator operator)
The operator used by the filter call.
- Parameters:
operator- The operator used by the filter call.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
OpsItemFilterOperator,OpsItemFilterOperator
-
-