pub struct GetFolderPathRequest {
pub authentication_token: Option<String>,
pub fields: Option<String>,
pub folder_id: String,
pub limit: Option<i64>,
pub marker: 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 "NAME" to include the names of the parent folders.
folder_id: String
The ID of the folder.
limit: Option<i64>
The maximum number of levels in the hierarchy to return.
marker: Option<String>
This value is not supported.
Trait Implementations§
Source§impl Clone for GetFolderPathRequest
impl Clone for GetFolderPathRequest
Source§fn clone(&self) -> GetFolderPathRequest
fn clone(&self) -> GetFolderPathRequest
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 GetFolderPathRequest
impl Debug for GetFolderPathRequest
Source§impl Default for GetFolderPathRequest
impl Default for GetFolderPathRequest
Source§fn default() -> GetFolderPathRequest
fn default() -> GetFolderPathRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for GetFolderPathRequest
impl PartialEq for GetFolderPathRequest
Source§impl Serialize for GetFolderPathRequest
impl Serialize for GetFolderPathRequest
impl StructuralPartialEq for GetFolderPathRequest
Auto Trait Implementations§
impl Freeze for GetFolderPathRequest
impl RefUnwindSafe for GetFolderPathRequest
impl Send for GetFolderPathRequest
impl Sync for GetFolderPathRequest
impl Unpin for GetFolderPathRequest
impl UnwindSafe for GetFolderPathRequest
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