pub struct UpdateFolderRequest {
pub authentication_token: Option<String>,
pub folder_id: String,
pub name: Option<String>,
pub parent_folder_id: Option<String>,
pub resource_state: Option<String>,
}
Fields§
§authentication_token: Option<String>
Amazon WorkDocs authentication token. Not required when using AWS administrator credentials to access the API.
folder_id: String
The ID of the folder.
name: Option<String>
The name of the folder.
parent_folder_id: Option<String>
The ID of the parent folder.
resource_state: Option<String>
The resource state of the folder. Only ACTIVE and RECYCLED are accepted values from the API.
Trait Implementations§
Source§impl Clone for UpdateFolderRequest
impl Clone for UpdateFolderRequest
Source§fn clone(&self) -> UpdateFolderRequest
fn clone(&self) -> UpdateFolderRequest
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 UpdateFolderRequest
impl Debug for UpdateFolderRequest
Source§impl Default for UpdateFolderRequest
impl Default for UpdateFolderRequest
Source§fn default() -> UpdateFolderRequest
fn default() -> UpdateFolderRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for UpdateFolderRequest
impl PartialEq for UpdateFolderRequest
Source§impl Serialize for UpdateFolderRequest
impl Serialize for UpdateFolderRequest
impl StructuralPartialEq for UpdateFolderRequest
Auto Trait Implementations§
impl Freeze for UpdateFolderRequest
impl RefUnwindSafe for UpdateFolderRequest
impl Send for UpdateFolderRequest
impl Sync for UpdateFolderRequest
impl Unpin for UpdateFolderRequest
impl UnwindSafe for UpdateFolderRequest
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