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 ==
.impl StructuralPartialEq for InitiateDocumentVersionUploadInput
Auto Trait Implementations§
impl Freeze for InitiateDocumentVersionUploadInput
impl RefUnwindSafe for InitiateDocumentVersionUploadInput
impl Send for InitiateDocumentVersionUploadInput
impl Sync for InitiateDocumentVersionUploadInput
impl Unpin for InitiateDocumentVersionUploadInput
impl UnwindSafe for InitiateDocumentVersionUploadInput
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more