#[non_exhaustive]pub struct UpdateKnowledgeBaseInput {
pub knowledge_base_id: Option<String>,
pub name: Option<String>,
pub description: Option<String>,
pub role_arn: Option<String>,
pub knowledge_base_configuration: Option<KnowledgeBaseConfiguration>,
pub storage_configuration: Option<StorageConfiguration>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.knowledge_base_id: Option<String>Identifier for a resource.
name: Option<String>Name for a resource.
description: Option<String>Description of the Resource.
role_arn: Option<String>ARN of a IAM role.
knowledge_base_configuration: Option<KnowledgeBaseConfiguration>Configures a bedrock knowledge base.
storage_configuration: Option<StorageConfiguration>Configures the physical storage of ingested data in a knowledge base.
Implementations§
source§impl UpdateKnowledgeBaseInput
impl UpdateKnowledgeBaseInput
sourcepub fn knowledge_base_id(&self) -> Option<&str>
pub fn knowledge_base_id(&self) -> Option<&str>
Identifier for a resource.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
Description of the Resource.
sourcepub fn knowledge_base_configuration(
&self
) -> Option<&KnowledgeBaseConfiguration>
pub fn knowledge_base_configuration( &self ) -> Option<&KnowledgeBaseConfiguration>
Configures a bedrock knowledge base.
sourcepub fn storage_configuration(&self) -> Option<&StorageConfiguration>
pub fn storage_configuration(&self) -> Option<&StorageConfiguration>
Configures the physical storage of ingested data in a knowledge base.
source§impl UpdateKnowledgeBaseInput
impl UpdateKnowledgeBaseInput
sourcepub fn builder() -> UpdateKnowledgeBaseInputBuilder
pub fn builder() -> UpdateKnowledgeBaseInputBuilder
Creates a new builder-style object to manufacture UpdateKnowledgeBaseInput.
Trait Implementations§
source§impl Clone for UpdateKnowledgeBaseInput
impl Clone for UpdateKnowledgeBaseInput
source§fn clone(&self) -> UpdateKnowledgeBaseInput
fn clone(&self) -> UpdateKnowledgeBaseInput
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 UpdateKnowledgeBaseInput
impl Debug for UpdateKnowledgeBaseInput
source§impl PartialEq for UpdateKnowledgeBaseInput
impl PartialEq for UpdateKnowledgeBaseInput
source§fn eq(&self, other: &UpdateKnowledgeBaseInput) -> bool
fn eq(&self, other: &UpdateKnowledgeBaseInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for UpdateKnowledgeBaseInput
Auto Trait Implementations§
impl RefUnwindSafe for UpdateKnowledgeBaseInput
impl Send for UpdateKnowledgeBaseInput
impl Sync for UpdateKnowledgeBaseInput
impl Unpin for UpdateKnowledgeBaseInput
impl UnwindSafe for UpdateKnowledgeBaseInput
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.