[][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. Not required when using AWS administrator credentials to access the API.

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 Clone for DescribeUsersRequest[src]

impl Debug for DescribeUsersRequest[src]

impl Default for DescribeUsersRequest[src]

impl PartialEq<DescribeUsersRequest> for DescribeUsersRequest[src]

impl Serialize for DescribeUsersRequest[src]

impl StructuralPartialEq for DescribeUsersRequest[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> 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.