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§
Source§impl Clone for CreateCustomMetadataRequest
impl Clone for CreateCustomMetadataRequest
Source§fn clone(&self) -> CreateCustomMetadataRequest
fn clone(&self) -> CreateCustomMetadataRequest
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 CreateCustomMetadataRequest
impl Debug for CreateCustomMetadataRequest
Source§impl Default for CreateCustomMetadataRequest
impl Default for CreateCustomMetadataRequest
Source§fn default() -> CreateCustomMetadataRequest
fn default() -> CreateCustomMetadataRequest
Returns the “default value” for a type. Read more
impl StructuralPartialEq for CreateCustomMetadataRequest
Auto Trait Implementations§
impl Freeze for CreateCustomMetadataRequest
impl RefUnwindSafe for CreateCustomMetadataRequest
impl Send for CreateCustomMetadataRequest
impl Sync for CreateCustomMetadataRequest
impl Unpin for CreateCustomMetadataRequest
impl UnwindSafe for CreateCustomMetadataRequest
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