Struct aws_sdk_rum::model::QueryFilter
source · #[non_exhaustive]pub struct QueryFilter { /* private fields */ }
Expand description
A structure that defines a key and values that you can use to filter the results. The only performance events that are returned are those that have values matching the ones that you specify in one of your QueryFilter
structures.
For example, you could specify Browser
as the Name
and specify Chrome,Firefox
as the Values
to return events generated only from those browsers.
Specifying Invert
as the Name
works as a "not equal to" filter. For example, specify Invert
as the Name
and specify Chrome
as the value to return all events except events from user sessions with the Chrome browser.
Implementations§
source§impl QueryFilter
impl QueryFilter
source§impl QueryFilter
impl QueryFilter
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture QueryFilter
.
Trait Implementations§
source§impl Clone for QueryFilter
impl Clone for QueryFilter
source§fn clone(&self) -> QueryFilter
fn clone(&self) -> QueryFilter
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for QueryFilter
impl Debug for QueryFilter
source§impl PartialEq<QueryFilter> for QueryFilter
impl PartialEq<QueryFilter> for QueryFilter
source§fn eq(&self, other: &QueryFilter) -> bool
fn eq(&self, other: &QueryFilter) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.