Interface QueryFilter.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<QueryFilter.Builder,QueryFilter>,SdkBuilder<QueryFilter.Builder,QueryFilter>,SdkPojo
- Enclosing class:
- QueryFilter
public static interface QueryFilter.Builder extends SdkPojo, CopyableBuilder<QueryFilter.Builder,QueryFilter>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description QueryFilter.Buildername(String name)The name of a key to search for.QueryFilter.Buildervalues(String... values)The values of theNamethat are to be be included in the returned results.QueryFilter.Buildervalues(Collection<String> values)The values of theNamethat are to be be included in 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, sdkFields
-
-
-
-
Method Detail
-
name
QueryFilter.Builder name(String name)
The name of a key to search for. The filter returns only the events that match the
NameandValuesthat you specify.Valid values for
NameareBrowser|Device|Country|Page|OS|EventType|Invert- Parameters:
name- The name of a key to search for. The filter returns only the events that match theNameandValuesthat you specify.Valid values for
NameareBrowser|Device|Country|Page|OS|EventType|Invert- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
values
QueryFilter.Builder values(Collection<String> values)
The values of the
Namethat are to be be included in the returned results.- Parameters:
values- The values of theNamethat are to be be included in the returned results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
values
QueryFilter.Builder values(String... values)
The values of the
Namethat are to be be included in the returned results.- Parameters:
values- The values of theNamethat are to be be included in the returned results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-