pub struct DescribeGroupsRequest {
pub authentication_token: Option<String>,
pub limit: Option<i64>,
pub marker: Option<String>,
pub organization_id: Option<String>,
pub search_query: String,
}
Fields§
§authentication_token: Option<String>
Amazon WorkDocs authentication token. Not required when using AWS administrator credentials to access the API.
limit: Option<i64>
The maximum number of items to return with this call.
marker: Option<String>
The marker for the next set of results. (You received this marker from a previous call.)
organization_id: Option<String>
The ID of the organization.
search_query: String
A query to describe groups by group name.
Trait Implementations§
Source§impl Clone for DescribeGroupsRequest
impl Clone for DescribeGroupsRequest
Source§fn clone(&self) -> DescribeGroupsRequest
fn clone(&self) -> DescribeGroupsRequest
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 DescribeGroupsRequest
impl Debug for DescribeGroupsRequest
Source§impl Default for DescribeGroupsRequest
impl Default for DescribeGroupsRequest
Source§fn default() -> DescribeGroupsRequest
fn default() -> DescribeGroupsRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for DescribeGroupsRequest
impl PartialEq for DescribeGroupsRequest
Source§impl Serialize for DescribeGroupsRequest
impl Serialize for DescribeGroupsRequest
impl StructuralPartialEq for DescribeGroupsRequest
Auto Trait Implementations§
impl Freeze for DescribeGroupsRequest
impl RefUnwindSafe for DescribeGroupsRequest
impl Send for DescribeGroupsRequest
impl Sync for DescribeGroupsRequest
impl Unpin for DescribeGroupsRequest
impl UnwindSafe for DescribeGroupsRequest
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