[][src]Struct rusoto_workdocs::CreateCustomMetadataRequest

pub struct CreateCustomMetadataRequest {
    pub authentication_token: Option<String>,
    pub custom_metadata: HashMap<String, String>,
    pub resource_id: String,
    pub version_id: Option<String>,
}

Fields

authentication_token: Option<String>

Amazon WorkDocs authentication token. Not required when using AWS administrator credentials to access the API.

custom_metadata: HashMap<String, String>

Custom metadata in the form of name-value pairs.

resource_id: String

The ID of the resource.

version_id: Option<String>

The ID of the version, if the custom metadata is being added to a document version.

Trait Implementations

impl Clone for CreateCustomMetadataRequest[src]

impl Debug for CreateCustomMetadataRequest[src]

impl Default for CreateCustomMetadataRequest[src]

impl PartialEq<CreateCustomMetadataRequest> for CreateCustomMetadataRequest[src]

impl Serialize for CreateCustomMetadataRequest[src]

impl StructuralPartialEq for CreateCustomMetadataRequest[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> Instrument for T[src]

impl<T> Instrument 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.