pub struct UpdateDocumentVersionRequest {
pub authentication_token: Option<String>,
pub document_id: String,
pub version_id: String,
pub version_status: Option<String>,
}
Fields§
§authentication_token: Option<String>
Amazon WorkDocs authentication token. Not required when using AWS administrator credentials to access the API.
document_id: String
The ID of the document.
version_id: String
The version ID of the document.
version_status: Option<String>
The status of the version.
Trait Implementations§
Source§impl Clone for UpdateDocumentVersionRequest
impl Clone for UpdateDocumentVersionRequest
Source§fn clone(&self) -> UpdateDocumentVersionRequest
fn clone(&self) -> UpdateDocumentVersionRequest
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 UpdateDocumentVersionRequest
impl Debug for UpdateDocumentVersionRequest
Source§impl Default for UpdateDocumentVersionRequest
impl Default for UpdateDocumentVersionRequest
Source§fn default() -> UpdateDocumentVersionRequest
fn default() -> UpdateDocumentVersionRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for UpdateDocumentVersionRequest
impl PartialEq for UpdateDocumentVersionRequest
Source§fn eq(&self, other: &UpdateDocumentVersionRequest) -> bool
fn eq(&self, other: &UpdateDocumentVersionRequest) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for UpdateDocumentVersionRequest
Auto Trait Implementations§
impl Freeze for UpdateDocumentVersionRequest
impl RefUnwindSafe for UpdateDocumentVersionRequest
impl Send for UpdateDocumentVersionRequest
impl Sync for UpdateDocumentVersionRequest
impl Unpin for UpdateDocumentVersionRequest
impl UnwindSafe for UpdateDocumentVersionRequest
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