[][src]Struct rusoto_workdocs::DescribeUsersRequest

pub struct DescribeUsersRequest {
    pub authentication_token: Option<String>,
    pub fields: Option<String>,
    pub include: Option<String>,
    pub limit: Option<i64>,
    pub marker: Option<String>,
    pub order: Option<String>,
    pub organization_id: Option<String>,
    pub query: Option<String>,
    pub sort: Option<String>,
    pub user_ids: Option<String>,
}

Fields

authentication_token: Option<String>

Amazon WorkDocs authentication token. Do not set this field when using administrative API actions, as in accessing the API using AWS credentials.

fields: Option<String>

A comma-separated list of values. Specify "STORAGE_METADATA" to include the user storage quota and utilization information.

include: Option<String>

The state of the users. Specify "ALL" to include inactive users.

limit: Option<i64>

The maximum number of items to return.

marker: Option<String>

The marker for the next set of results. (You received this marker from a previous call.)

order: Option<String>

The order for the results.

organization_id: Option<String>

The ID of the organization.

query: Option<String>

A query to filter users by user name.

sort: Option<String>

The sorting criteria.

user_ids: Option<String>

The IDs of the users.

Trait Implementations

impl PartialEq<DescribeUsersRequest> for DescribeUsersRequest[src]

impl Default for DescribeUsersRequest[src]

impl Clone for DescribeUsersRequest[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for DescribeUsersRequest[src]

impl Serialize for DescribeUsersRequest[src]

Auto Trait Implementations

impl Send for DescribeUsersRequest

impl Sync for DescribeUsersRequest

Blanket Implementations

impl<T> From for T[src]

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

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

type Owned = T

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self