pub struct InitiateDocumentVersionUploadRequest {
pub authentication_token: Option<String>,
pub content_created_timestamp: Option<f64>,
pub content_modified_timestamp: Option<f64>,
pub content_type: Option<String>,
pub document_size_in_bytes: Option<i64>,
pub id: Option<String>,
pub name: Option<String>,
pub parent_folder_id: String,
}
Fields§
§authentication_token: Option<String>
Amazon WorkDocs authentication token. Not required when using AWS administrator credentials to access the API.
content_created_timestamp: Option<f64>
The timestamp when the content of the document was originally created.
content_modified_timestamp: Option<f64>
The timestamp when the content of the document was modified.
content_type: Option<String>
The content type of the document.
document_size_in_bytes: Option<i64>
The size of the document, in bytes.
id: Option<String>
The ID of the document.
name: Option<String>
The name of the document.
parent_folder_id: String
The ID of the parent folder.
Trait Implementations§
Source§impl Clone for InitiateDocumentVersionUploadRequest
impl Clone for InitiateDocumentVersionUploadRequest
Source§fn clone(&self) -> InitiateDocumentVersionUploadRequest
fn clone(&self) -> InitiateDocumentVersionUploadRequest
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 Default for InitiateDocumentVersionUploadRequest
impl Default for InitiateDocumentVersionUploadRequest
Source§fn default() -> InitiateDocumentVersionUploadRequest
fn default() -> InitiateDocumentVersionUploadRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for InitiateDocumentVersionUploadRequest
impl PartialEq for InitiateDocumentVersionUploadRequest
Source§fn eq(&self, other: &InitiateDocumentVersionUploadRequest) -> bool
fn eq(&self, other: &InitiateDocumentVersionUploadRequest) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for InitiateDocumentVersionUploadRequest
Auto Trait Implementations§
impl Freeze for InitiateDocumentVersionUploadRequest
impl RefUnwindSafe for InitiateDocumentVersionUploadRequest
impl Send for InitiateDocumentVersionUploadRequest
impl Sync for InitiateDocumentVersionUploadRequest
impl Unpin for InitiateDocumentVersionUploadRequest
impl UnwindSafe for InitiateDocumentVersionUploadRequest
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