Interface FilterParameter.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<FilterParameter.Builder,FilterParameter>,SdkBuilder<FilterParameter.Builder,FilterParameter>,SdkPojo
- Enclosing class:
- FilterParameter
public static interface FilterParameter.Builder extends SdkPojo, CopyableBuilder<FilterParameter.Builder,FilterParameter>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description FilterParameter.Builderfield(String field)A data field that you want to filter, to further scope your application's Internet Monitor data in a repository that you created by running a query.FilterParameter.Builderoperator(String operator)The operator to use with the filter field and a value, such asnot_equals.FilterParameter.Builderoperator(Operator operator)The operator to use with the filter field and a value, such asnot_equals.FilterParameter.Buildervalues(String... values)One or more values to be used, together with the specified operator, to filter data for a query.FilterParameter.Buildervalues(Collection<String> values)One or more values to be used, together with the specified operator, to filter data for a query.-
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
-
field
FilterParameter.Builder field(String field)
A data field that you want to filter, to further scope your application's Internet Monitor data in a repository that you created by running a query. A field might be
city, for example. The field must be one of the fields that was returned by the specific query that you used to create the repository.- Parameters:
field- A data field that you want to filter, to further scope your application's Internet Monitor data in a repository that you created by running a query. A field might becity, for example. The field must be one of the fields that was returned by the specific query that you used to create the repository.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
operator
FilterParameter.Builder operator(String operator)
The operator to use with the filter field and a value, such as
not_equals.
-
operator
FilterParameter.Builder operator(Operator operator)
The operator to use with the filter field and a value, such as
not_equals.
-
values
FilterParameter.Builder values(Collection<String> values)
One or more values to be used, together with the specified operator, to filter data for a query. For example, you could specify an array of values such as
["Seattle", "Redmond"]. Values in the array are separated by commas.- Parameters:
values- One or more values to be used, together with the specified operator, to filter data for a query. For example, you could specify an array of values such as["Seattle", "Redmond"]. Values in the array are separated by commas.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
values
FilterParameter.Builder values(String... values)
One or more values to be used, together with the specified operator, to filter data for a query. For example, you could specify an array of values such as
["Seattle", "Redmond"]. Values in the array are separated by commas.- Parameters:
values- One or more values to be used, together with the specified operator, to filter data for a query. For example, you could specify an array of values such as["Seattle", "Redmond"]. Values in the array are separated by commas.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-