pub struct GetResourcesRequest {
pub authentication_token: Option<String>,
pub collection_type: Option<String>,
pub limit: Option<i64>,
pub marker: Option<String>,
pub user_id: Option<String>,
}
Fields§
§authentication_token: Option<String>
The Amazon WorkDocs authentication token. Not required when using AWS administrator credentials to access the API.
collection_type: Option<String>
The collection type.
limit: Option<i64>
The maximum number of resources to return.
marker: Option<String>
The marker for the next set of results. This marker was received from a previous call.
user_id: Option<String>
The user ID for the resource collection. This is a required field for accessing the API operation using IAM credentials.
Trait Implementations§
Source§impl Clone for GetResourcesRequest
impl Clone for GetResourcesRequest
Source§fn clone(&self) -> GetResourcesRequest
fn clone(&self) -> GetResourcesRequest
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 GetResourcesRequest
impl Debug for GetResourcesRequest
Source§impl Default for GetResourcesRequest
impl Default for GetResourcesRequest
Source§fn default() -> GetResourcesRequest
fn default() -> GetResourcesRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for GetResourcesRequest
impl PartialEq for GetResourcesRequest
Source§impl Serialize for GetResourcesRequest
impl Serialize for GetResourcesRequest
impl StructuralPartialEq for GetResourcesRequest
Auto Trait Implementations§
impl Freeze for GetResourcesRequest
impl RefUnwindSafe for GetResourcesRequest
impl Send for GetResourcesRequest
impl Sync for GetResourcesRequest
impl Unpin for GetResourcesRequest
impl UnwindSafe for GetResourcesRequest
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