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§
Source§impl Clone for DescribeUsersRequest
impl Clone for DescribeUsersRequest
Source§fn clone(&self) -> DescribeUsersRequest
fn clone(&self) -> DescribeUsersRequest
Returns a duplicate 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 DescribeUsersRequest
impl Debug for DescribeUsersRequest
Source§impl Default for DescribeUsersRequest
impl Default for DescribeUsersRequest
Source§fn default() -> DescribeUsersRequest
fn default() -> DescribeUsersRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for DescribeUsersRequest
impl PartialEq for DescribeUsersRequest
Source§impl Serialize for DescribeUsersRequest
impl Serialize for DescribeUsersRequest
impl StructuralPartialEq for DescribeUsersRequest
Auto Trait Implementations§
impl Freeze for DescribeUsersRequest
impl RefUnwindSafe for DescribeUsersRequest
impl Send for DescribeUsersRequest
impl Sync for DescribeUsersRequest
impl Unpin for DescribeUsersRequest
impl UnwindSafe for DescribeUsersRequest
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more