pub struct GetDocumentVersionRequest {
pub authentication_token: Option<String>,
pub document_id: String,
pub fields: Option<String>,
pub include_custom_metadata: Option<bool>,
pub version_id: 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.
fields: Option<String>
A comma-separated list of values. Specify "SOURCE" to include a URL for the source document.
include_custom_metadata: Option<bool>
Set this to TRUE to include custom metadata in the response.
version_id: String
The version ID of the document.
Trait Implementations§
Source§impl Clone for GetDocumentVersionRequest
impl Clone for GetDocumentVersionRequest
Source§fn clone(&self) -> GetDocumentVersionRequest
fn clone(&self) -> GetDocumentVersionRequest
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 GetDocumentVersionRequest
impl Debug for GetDocumentVersionRequest
Source§impl Default for GetDocumentVersionRequest
impl Default for GetDocumentVersionRequest
Source§fn default() -> GetDocumentVersionRequest
fn default() -> GetDocumentVersionRequest
Returns the “default value” for a type. Read more
impl StructuralPartialEq for GetDocumentVersionRequest
Auto Trait Implementations§
impl Freeze for GetDocumentVersionRequest
impl RefUnwindSafe for GetDocumentVersionRequest
impl Send for GetDocumentVersionRequest
impl Sync for GetDocumentVersionRequest
impl Unpin for GetDocumentVersionRequest
impl UnwindSafe for GetDocumentVersionRequest
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