#[non_exhaustive]pub struct UpdateDocumentInputBuilder { /* private fields */ }
Expand description
A builder for UpdateDocumentInput
.
Implementations§
source§impl UpdateDocumentInputBuilder
impl UpdateDocumentInputBuilder
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 document_id(self, input: impl Into<String>) -> Self
pub fn document_id(self, input: impl Into<String>) -> Self
The ID of the document.
sourcepub fn set_document_id(self, input: Option<String>) -> Self
pub fn set_document_id(self, input: Option<String>) -> Self
The ID of the document.
sourcepub fn parent_folder_id(self, input: impl Into<String>) -> Self
pub fn parent_folder_id(self, input: impl Into<String>) -> Self
The ID of the parent folder.
sourcepub fn set_parent_folder_id(self, input: Option<String>) -> Self
pub fn set_parent_folder_id(self, input: Option<String>) -> Self
The ID of the parent folder.
sourcepub fn resource_state(self, input: ResourceStateType) -> Self
pub fn resource_state(self, input: ResourceStateType) -> Self
The resource state of the document. Only ACTIVE and RECYCLED are supported.
sourcepub fn set_resource_state(self, input: Option<ResourceStateType>) -> Self
pub fn set_resource_state(self, input: Option<ResourceStateType>) -> Self
The resource state of the document. Only ACTIVE and RECYCLED are supported.
sourcepub fn build(self) -> Result<UpdateDocumentInput, BuildError>
pub fn build(self) -> Result<UpdateDocumentInput, BuildError>
Consumes the builder and constructs a UpdateDocumentInput
.
Trait Implementations§
source§impl Clone for UpdateDocumentInputBuilder
impl Clone for UpdateDocumentInputBuilder
source§fn clone(&self) -> UpdateDocumentInputBuilder
fn clone(&self) -> UpdateDocumentInputBuilder
Returns a copy 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 UpdateDocumentInputBuilder
impl Debug for UpdateDocumentInputBuilder
source§impl Default for UpdateDocumentInputBuilder
impl Default for UpdateDocumentInputBuilder
source§fn default() -> UpdateDocumentInputBuilder
fn default() -> UpdateDocumentInputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<UpdateDocumentInputBuilder> for UpdateDocumentInputBuilder
impl PartialEq<UpdateDocumentInputBuilder> for UpdateDocumentInputBuilder
source§fn eq(&self, other: &UpdateDocumentInputBuilder) -> bool
fn eq(&self, other: &UpdateDocumentInputBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.