[][src]Struct rusoto_quicksight::SearchDashboardsRequest

pub struct SearchDashboardsRequest {
    pub aws_account_id: String,
    pub filters: Vec<DashboardSearchFilter>,
    pub max_results: Option<i64>,
    pub next_token: Option<String>,
}

Fields

aws_account_id: String

The ID of the AWS account that contains the user whose dashboards you're searching for.

filters: Vec<DashboardSearchFilter>

The filters to apply to the search. Currently, you can search only by user name, for example, "Filters": [ { "Name": "QUICKSIGHT_USER", "Operator": "StringEquals", "Value": "arn:aws:quicksight:us-east-1:1:user/default/UserName1" } ]

max_results: Option<i64>

The maximum number of results to be returned per request.

next_token: Option<String>

The token for the next set of results, or null if there are no more results.

Trait Implementations

impl Clone for SearchDashboardsRequest[src]

impl Debug for SearchDashboardsRequest[src]

impl Default for SearchDashboardsRequest[src]

impl PartialEq<SearchDashboardsRequest> for SearchDashboardsRequest[src]

impl Serialize for SearchDashboardsRequest[src]

impl StructuralPartialEq for SearchDashboardsRequest[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.