#[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 Amazon Web Services 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 Amazon Web Services administrator credentials to access the API.
sourcepub fn get_authentication_token(&self) -> &Option<String>
pub fn get_authentication_token(&self) -> &Option<String>
Amazon WorkDocs authentication token. Not required when using Amazon Web Services 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.
This field is required.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 get_document_id(&self) -> &Option<String>
pub fn get_document_id(&self) -> &Option<String>
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 get_parent_folder_id(&self) -> &Option<String>
pub fn get_parent_folder_id(&self) -> &Option<String>
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 get_resource_state(&self) -> &Option<ResourceStateType>
pub fn get_resource_state(&self) -> &Option<ResourceStateType>
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
.
source§impl UpdateDocumentInputBuilder
impl UpdateDocumentInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<UpdateDocumentOutput, SdkError<UpdateDocumentError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<UpdateDocumentOutput, SdkError<UpdateDocumentError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for UpdateDocumentInputBuilder
impl Clone for UpdateDocumentInputBuilder
source§fn clone(&self) -> UpdateDocumentInputBuilder
fn clone(&self) -> UpdateDocumentInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
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
source§impl PartialEq for UpdateDocumentInputBuilder
impl PartialEq for UpdateDocumentInputBuilder
source§fn eq(&self, other: &UpdateDocumentInputBuilder) -> bool
fn eq(&self, other: &UpdateDocumentInputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.