[][src]Struct rusoto_workdocs::InitiateDocumentVersionUploadRequest

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. Do not set this field when using administrative API actions, as in accessing the API using AWS credentials.

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

impl Clone for InitiateDocumentVersionUploadRequest[src]

impl Debug for InitiateDocumentVersionUploadRequest[src]

impl Default for InitiateDocumentVersionUploadRequest[src]

impl PartialEq<InitiateDocumentVersionUploadRequest> for InitiateDocumentVersionUploadRequest[src]

impl Serialize for InitiateDocumentVersionUploadRequest[src]

impl StructuralPartialEq for InitiateDocumentVersionUploadRequest[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.