Struct aws_sdk_quicksight::model::DashboardSearchFilter
source · [−]#[non_exhaustive]pub struct DashboardSearchFilter {
pub operator: Option<FilterOperator>,
pub name: Option<DashboardFilterAttribute>,
pub value: Option<String>,
}Expand description
A filter that you apply when searching for dashboards.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.operator: Option<FilterOperator>The comparison operator that you want to use as a filter, for example, "Operator": "StringEquals".
name: Option<DashboardFilterAttribute>The name of the value that you want to use as a filter, for example, "Name": "QUICKSIGHT_USER".
value: Option<String>The value of the named item, in this case QUICKSIGHT_USER, that you want to use as a filter, for example, "Value": "arn:aws:quicksight:us-east-1:1:user/default/UserName1".
Implementations
The comparison operator that you want to use as a filter, for example, "Operator": "StringEquals".
The name of the value that you want to use as a filter, for example, "Name": "QUICKSIGHT_USER".
Creates a new builder-style object to manufacture DashboardSearchFilter
Trait Implementations
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
Auto Trait Implementations
impl RefUnwindSafe for DashboardSearchFilter
impl Send for DashboardSearchFilter
impl Sync for DashboardSearchFilter
impl Unpin for DashboardSearchFilter
impl UnwindSafe for DashboardSearchFilter
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more