Struct aws_sdk_workdocs::input::get_document_input::Builder
source · pub struct Builder { /* private fields */ }
Expand description
A builder for GetDocumentInput
.
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 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 include_custom_metadata(self, input: bool) -> Self
pub fn include_custom_metadata(self, input: bool) -> Self
Set this to TRUE
to include custom metadata in the response.
sourcepub fn set_include_custom_metadata(self, input: Option<bool>) -> Self
pub fn set_include_custom_metadata(self, input: Option<bool>) -> Self
Set this to TRUE
to include custom metadata in the response.
sourcepub fn build(self) -> Result<GetDocumentInput, BuildError>
pub fn build(self) -> Result<GetDocumentInput, BuildError>
Consumes the builder and constructs a GetDocumentInput
.