Struct aws_sdk_workdocs::operation::initiate_document_version_upload::InitiateDocumentVersionUploadInput
source · #[non_exhaustive]pub struct InitiateDocumentVersionUploadInput {
pub authentication_token: Option<String>,
pub id: Option<String>,
pub name: Option<String>,
pub content_created_timestamp: Option<DateTime>,
pub content_modified_timestamp: Option<DateTime>,
pub content_type: Option<String>,
pub document_size_in_bytes: Option<i64>,
pub parent_folder_id: Option<String>,
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.authentication_token: Option<String>
Amazon WorkDocs authentication token. Not required when using Amazon Web Services administrator credentials to access the API.
id: Option<String>
The ID of the document.
name: Option<String>
The name of the document.
content_created_timestamp: Option<DateTime>
The timestamp when the content of the document was originally created.
content_modified_timestamp: Option<DateTime>
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.
parent_folder_id: Option<String>
The ID of the parent folder.
Implementations§
source§impl InitiateDocumentVersionUploadInput
impl InitiateDocumentVersionUploadInput
sourcepub fn authentication_token(&self) -> Option<&str>
pub fn authentication_token(&self) -> Option<&str>
Amazon WorkDocs authentication token. Not required when using Amazon Web Services administrator credentials to access the API.
sourcepub fn content_created_timestamp(&self) -> Option<&DateTime>
pub fn content_created_timestamp(&self) -> Option<&DateTime>
The timestamp when the content of the document was originally created.
sourcepub fn content_modified_timestamp(&self) -> Option<&DateTime>
pub fn content_modified_timestamp(&self) -> Option<&DateTime>
The timestamp when the content of the document was modified.
sourcepub fn content_type(&self) -> Option<&str>
pub fn content_type(&self) -> Option<&str>
The content type of the document.
sourcepub fn document_size_in_bytes(&self) -> Option<i64>
pub fn document_size_in_bytes(&self) -> Option<i64>
The size of the document, in bytes.
sourcepub fn parent_folder_id(&self) -> Option<&str>
pub fn parent_folder_id(&self) -> Option<&str>
The ID of the parent folder.
source§impl InitiateDocumentVersionUploadInput
impl InitiateDocumentVersionUploadInput
sourcepub fn builder() -> InitiateDocumentVersionUploadInputBuilder
pub fn builder() -> InitiateDocumentVersionUploadInputBuilder
Creates a new builder-style object to manufacture InitiateDocumentVersionUploadInput
.
Trait Implementations§
source§impl Clone for InitiateDocumentVersionUploadInput
impl Clone for InitiateDocumentVersionUploadInput
source§fn clone(&self) -> InitiateDocumentVersionUploadInput
fn clone(&self) -> InitiateDocumentVersionUploadInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for InitiateDocumentVersionUploadInput
impl PartialEq for InitiateDocumentVersionUploadInput
source§fn eq(&self, other: &InitiateDocumentVersionUploadInput) -> bool
fn eq(&self, other: &InitiateDocumentVersionUploadInput) -> bool
self
and other
values to be equal, and is used
by ==
.