pub struct Builder { /* private fields */ }
Expand description
A builder for CreateCustomMetadataInput
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn authentication_token(self, input: impl Into<String>) -> Self
pub fn authentication_token(self, input: impl Into<String>) -> Self
Amazon WorkDocs authentication token. Not required when using AWS administrator credentials to access the API.
sourcepub fn set_authentication_token(self, input: Option<String>) -> Self
pub fn set_authentication_token(self, input: Option<String>) -> Self
Amazon WorkDocs authentication token. Not required when using AWS administrator credentials to access the API.
sourcepub fn resource_id(self, input: impl Into<String>) -> Self
pub fn resource_id(self, input: impl Into<String>) -> Self
The ID of the resource.
sourcepub fn set_resource_id(self, input: Option<String>) -> Self
pub fn set_resource_id(self, input: Option<String>) -> Self
The ID of the resource.
sourcepub fn version_id(self, input: impl Into<String>) -> Self
pub fn version_id(self, input: impl Into<String>) -> Self
The ID of the version, if the custom metadata is being added to a document version.
sourcepub fn set_version_id(self, input: Option<String>) -> Self
pub fn set_version_id(self, input: Option<String>) -> Self
The ID of the version, if the custom metadata is being added to a document version.
sourcepub fn custom_metadata(self, k: impl Into<String>, v: impl Into<String>) -> Self
pub fn custom_metadata(self, k: impl Into<String>, v: impl Into<String>) -> Self
Adds a key-value pair to custom_metadata
.
To override the contents of this collection use set_custom_metadata
.
Custom metadata in the form of name-value pairs.
sourcepub fn set_custom_metadata(self, input: Option<HashMap<String, String>>) -> Self
pub fn set_custom_metadata(self, input: Option<HashMap<String, String>>) -> Self
Custom metadata in the form of name-value pairs.
sourcepub fn build(self) -> Result<CreateCustomMetadataInput, BuildError>
pub fn build(self) -> Result<CreateCustomMetadataInput, BuildError>
Consumes the builder and constructs a CreateCustomMetadataInput
.