#[non_exhaustive]pub struct UpdateContentInput {
pub knowledge_base_id: Option<String>,
pub content_id: Option<String>,
pub revision_id: Option<String>,
pub title: Option<String>,
pub override_link_out_uri: Option<String>,
pub remove_override_link_out_uri: Option<bool>,
pub metadata: Option<HashMap<String, String>>,
pub upload_id: Option<String>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.knowledge_base_id: Option<String>The identifier of the knowledge base. This should not be a QUICK_RESPONSES type knowledge base if you're storing Amazon Q Content resource to it. Can be either the ID or the ARN
content_id: Option<String>The identifier of the content. Can be either the ID or the ARN. URLs cannot contain the ARN.
revision_id: Option<String>The revisionId of the content resource to update, taken from an earlier call to GetContent, GetContentSummary, SearchContent, or ListContents. If included, this argument acts as an optimistic lock to ensure content was not modified since it was last read. If it has been modified, this API throws a PreconditionFailedException.
title: Option<String>The title of the content.
override_link_out_uri: Option<String>The URI for the article. If the knowledge base has a templateUri, setting this argument overrides it for this piece of content. To remove an existing overrideLinkOurUri, exclude this argument and set removeOverrideLinkOutUri to true.
remove_override_link_out_uri: Option<bool>Unset the existing overrideLinkOutUri if it exists.
metadata: Option<HashMap<String, String>>A key/value map to store attributes without affecting tagging or recommendations. For example, when synchronizing data between an external system and Amazon Q, you can store an external version identifier as metadata to utilize for determining drift.
upload_id: Option<String>A pointer to the uploaded asset. This value is returned by StartContentUpload.
Implementations§
source§impl UpdateContentInput
impl UpdateContentInput
sourcepub fn knowledge_base_id(&self) -> Option<&str>
pub fn knowledge_base_id(&self) -> Option<&str>
The identifier of the knowledge base. This should not be a QUICK_RESPONSES type knowledge base if you're storing Amazon Q Content resource to it. Can be either the ID or the ARN
sourcepub fn content_id(&self) -> Option<&str>
pub fn content_id(&self) -> Option<&str>
The identifier of the content. Can be either the ID or the ARN. URLs cannot contain the ARN.
sourcepub fn revision_id(&self) -> Option<&str>
pub fn revision_id(&self) -> Option<&str>
The revisionId of the content resource to update, taken from an earlier call to GetContent, GetContentSummary, SearchContent, or ListContents. If included, this argument acts as an optimistic lock to ensure content was not modified since it was last read. If it has been modified, this API throws a PreconditionFailedException.
sourcepub fn override_link_out_uri(&self) -> Option<&str>
pub fn override_link_out_uri(&self) -> Option<&str>
The URI for the article. If the knowledge base has a templateUri, setting this argument overrides it for this piece of content. To remove an existing overrideLinkOurUri, exclude this argument and set removeOverrideLinkOutUri to true.
sourcepub fn remove_override_link_out_uri(&self) -> Option<bool>
pub fn remove_override_link_out_uri(&self) -> Option<bool>
Unset the existing overrideLinkOutUri if it exists.
sourcepub fn metadata(&self) -> Option<&HashMap<String, String>>
pub fn metadata(&self) -> Option<&HashMap<String, String>>
A key/value map to store attributes without affecting tagging or recommendations. For example, when synchronizing data between an external system and Amazon Q, you can store an external version identifier as metadata to utilize for determining drift.
sourcepub fn upload_id(&self) -> Option<&str>
pub fn upload_id(&self) -> Option<&str>
A pointer to the uploaded asset. This value is returned by StartContentUpload.
source§impl UpdateContentInput
impl UpdateContentInput
sourcepub fn builder() -> UpdateContentInputBuilder
pub fn builder() -> UpdateContentInputBuilder
Creates a new builder-style object to manufacture UpdateContentInput.
Trait Implementations§
source§impl Clone for UpdateContentInput
impl Clone for UpdateContentInput
source§fn clone(&self) -> UpdateContentInput
fn clone(&self) -> UpdateContentInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for UpdateContentInput
impl Debug for UpdateContentInput
source§impl PartialEq for UpdateContentInput
impl PartialEq for UpdateContentInput
source§fn eq(&self, other: &UpdateContentInput) -> bool
fn eq(&self, other: &UpdateContentInput) -> bool
self and other values to be equal, and is used
by ==.