Interface OpsItemEventFilter.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<OpsItemEventFilter.Builder,OpsItemEventFilter>,SdkBuilder<OpsItemEventFilter.Builder,OpsItemEventFilter>,SdkPojo
- Enclosing class:
- OpsItemEventFilter
public static interface OpsItemEventFilter.Builder extends SdkPojo, CopyableBuilder<OpsItemEventFilter.Builder,OpsItemEventFilter>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description OpsItemEventFilter.Builderkey(String key)The name of the filter key.OpsItemEventFilter.Builderkey(OpsItemEventFilterKey key)The name of the filter key.OpsItemEventFilter.Builderoperator(String operator)The operator used by the filter call.OpsItemEventFilter.Builderoperator(OpsItemEventFilterOperator operator)The operator used by the filter call.OpsItemEventFilter.Buildervalues(String... values)The values for the filter, consisting of one or more OpsItem IDs.OpsItemEventFilter.Buildervalues(Collection<String> values)The values for the filter, consisting of one or more OpsItem IDs.-
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
-
key
OpsItemEventFilter.Builder key(String key)
The name of the filter key. Currently, the only supported value is
OpsItemId.- Parameters:
key- The name of the filter key. Currently, the only supported value isOpsItemId.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
OpsItemEventFilterKey,OpsItemEventFilterKey
-
key
OpsItemEventFilter.Builder key(OpsItemEventFilterKey key)
The name of the filter key. Currently, the only supported value is
OpsItemId.- Parameters:
key- The name of the filter key. Currently, the only supported value isOpsItemId.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
OpsItemEventFilterKey,OpsItemEventFilterKey
-
values
OpsItemEventFilter.Builder values(Collection<String> values)
The values for the filter, consisting of one or more OpsItem IDs.
- Parameters:
values- The values for the filter, consisting of one or more OpsItem IDs.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
values
OpsItemEventFilter.Builder values(String... values)
The values for the filter, consisting of one or more OpsItem IDs.
- Parameters:
values- The values for the filter, consisting of one or more OpsItem IDs.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
operator
OpsItemEventFilter.Builder operator(String operator)
The operator used by the filter call. Currently, the only supported value is
Equal.- Parameters:
operator- The operator used by the filter call. Currently, the only supported value isEqual.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
OpsItemEventFilterOperator,OpsItemEventFilterOperator
-
operator
OpsItemEventFilter.Builder operator(OpsItemEventFilterOperator operator)
The operator used by the filter call. Currently, the only supported value is
Equal.- Parameters:
operator- The operator used by the filter call. Currently, the only supported value isEqual.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
OpsItemEventFilterOperator,OpsItemEventFilterOperator
-
-