Struct aws_sdk_wisdom::operation::update_knowledge_base_template_uri::builders::UpdateKnowledgeBaseTemplateUriFluentBuilder
source · pub struct UpdateKnowledgeBaseTemplateUriFluentBuilder { /* private fields */ }Expand description
Fluent builder constructing a request to UpdateKnowledgeBaseTemplateUri.
Updates the template URI of a knowledge base. This is only supported for knowledge bases of type EXTERNAL. Include a single variable in ${variable} format; this interpolated by Wisdom using ingested content. For example, if you ingest a Salesforce article, it has an Id value, and you can set the template URI to https://myInstanceName.lightning.force.com/lightning/r/Knowledge__kav/*${Id}*/view.
Implementations§
source§impl UpdateKnowledgeBaseTemplateUriFluentBuilder
impl UpdateKnowledgeBaseTemplateUriFluentBuilder
sourcepub fn as_input(&self) -> &UpdateKnowledgeBaseTemplateUriInputBuilder
pub fn as_input(&self) -> &UpdateKnowledgeBaseTemplateUriInputBuilder
Access the UpdateKnowledgeBaseTemplateUri as a reference.
sourcepub async fn send(
self
) -> Result<UpdateKnowledgeBaseTemplateUriOutput, SdkError<UpdateKnowledgeBaseTemplateUriError, HttpResponse>>
pub async fn send( self ) -> Result<UpdateKnowledgeBaseTemplateUriOutput, SdkError<UpdateKnowledgeBaseTemplateUriError, HttpResponse>>
Sends the request and returns the response.
If an error occurs, an SdkError will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub fn customize(
self
) -> CustomizableOperation<UpdateKnowledgeBaseTemplateUriOutput, UpdateKnowledgeBaseTemplateUriError, Self>
pub fn customize( self ) -> CustomizableOperation<UpdateKnowledgeBaseTemplateUriOutput, UpdateKnowledgeBaseTemplateUriError, Self>
Consumes this builder, creating a customizable operation that can be modified before being sent.
sourcepub fn knowledge_base_id(self, input: impl Into<String>) -> Self
pub fn knowledge_base_id(self, input: impl Into<String>) -> Self
The identifier of the knowledge base. This should not be a QUICK_RESPONSES type knowledge base if you're storing Wisdom Content resource to it. Can be either the ID or the ARN. URLs cannot contain the ARN.
sourcepub fn set_knowledge_base_id(self, input: Option<String>) -> Self
pub fn set_knowledge_base_id(self, input: Option<String>) -> Self
The identifier of the knowledge base. This should not be a QUICK_RESPONSES type knowledge base if you're storing Wisdom Content resource to it. Can be either the ID or the ARN. URLs cannot contain the ARN.
sourcepub fn get_knowledge_base_id(&self) -> &Option<String>
pub fn get_knowledge_base_id(&self) -> &Option<String>
The identifier of the knowledge base. This should not be a QUICK_RESPONSES type knowledge base if you're storing Wisdom Content resource to it. Can be either the ID or the ARN. URLs cannot contain the ARN.
sourcepub fn template_uri(self, input: impl Into<String>) -> Self
pub fn template_uri(self, input: impl Into<String>) -> Self
The template URI to update.
sourcepub fn set_template_uri(self, input: Option<String>) -> Self
pub fn set_template_uri(self, input: Option<String>) -> Self
The template URI to update.
sourcepub fn get_template_uri(&self) -> &Option<String>
pub fn get_template_uri(&self) -> &Option<String>
The template URI to update.
Trait Implementations§
source§impl Clone for UpdateKnowledgeBaseTemplateUriFluentBuilder
impl Clone for UpdateKnowledgeBaseTemplateUriFluentBuilder
source§fn clone(&self) -> UpdateKnowledgeBaseTemplateUriFluentBuilder
fn clone(&self) -> UpdateKnowledgeBaseTemplateUriFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more