Struct rusoto_workdocs::DeleteCustomMetadataRequest[][src]

pub struct DeleteCustomMetadataRequest {
    pub authentication_token: Option<String>,
    pub delete_all: Option<bool>,
    pub keys: Option<Vec<String>>,
    pub resource_id: String,
    pub version_id: Option<String>,
}

Fields

Amazon WorkDocs authentication token. Do not set this field when using administrative API actions, as in accessing the API using AWS credentials.

Flag to indicate removal of all custom metadata properties from the specified resource.

List of properties to remove.

The ID of the resource, either a document or folder.

The ID of the version, if the custom metadata is being deleted from a document version.

Trait Implementations

impl Default for DeleteCustomMetadataRequest
[src]

Returns the "default value" for a type. Read more

impl Debug for DeleteCustomMetadataRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for DeleteCustomMetadataRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for DeleteCustomMetadataRequest
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations