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§
§authentication_token: Option<String>
Amazon WorkDocs authentication token. Not required when using AWS administrator credentials to access the API.
delete_all: Option<bool>
Flag to indicate removal of all custom metadata properties from the specified resource.
keys: Option<Vec<String>>
List of properties to remove.
resource_id: String
The ID of the resource, either a document or folder.
version_id: Option<String>
The ID of the version, if the custom metadata is being deleted from a document version.
Trait Implementations§
Source§impl Clone for DeleteCustomMetadataRequest
impl Clone for DeleteCustomMetadataRequest
Source§fn clone(&self) -> DeleteCustomMetadataRequest
fn clone(&self) -> DeleteCustomMetadataRequest
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for DeleteCustomMetadataRequest
impl Debug for DeleteCustomMetadataRequest
Source§impl Default for DeleteCustomMetadataRequest
impl Default for DeleteCustomMetadataRequest
Source§fn default() -> DeleteCustomMetadataRequest
fn default() -> DeleteCustomMetadataRequest
Returns the “default value” for a type. Read more
impl StructuralPartialEq for DeleteCustomMetadataRequest
Auto Trait Implementations§
impl Freeze for DeleteCustomMetadataRequest
impl RefUnwindSafe for DeleteCustomMetadataRequest
impl Send for DeleteCustomMetadataRequest
impl Sync for DeleteCustomMetadataRequest
impl Unpin for DeleteCustomMetadataRequest
impl UnwindSafe for DeleteCustomMetadataRequest
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
Mutably borrows from an owned value. Read more