Struct aws_sdk_lexmodelsv2::types::QnAIntentConfiguration
source · #[non_exhaustive]pub struct QnAIntentConfiguration {
pub data_source_configuration: Option<DataSourceConfiguration>,
pub bedrock_model_configuration: Option<BedrockModelSpecification>,
}Expand description
Details about the the configuration of the built-in Amazon.QnAIntent.
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.data_source_configuration: Option<DataSourceConfiguration>Contains details about the configuration of the data source used for the AMAZON.QnAIntent.
bedrock_model_configuration: Option<BedrockModelSpecification>Contains information about the Amazon Bedrock model used to interpret the prompt used in descriptive bot building.
Implementations§
source§impl QnAIntentConfiguration
impl QnAIntentConfiguration
sourcepub fn data_source_configuration(&self) -> Option<&DataSourceConfiguration>
pub fn data_source_configuration(&self) -> Option<&DataSourceConfiguration>
Contains details about the configuration of the data source used for the AMAZON.QnAIntent.
sourcepub fn bedrock_model_configuration(&self) -> Option<&BedrockModelSpecification>
pub fn bedrock_model_configuration(&self) -> Option<&BedrockModelSpecification>
Contains information about the Amazon Bedrock model used to interpret the prompt used in descriptive bot building.
source§impl QnAIntentConfiguration
impl QnAIntentConfiguration
sourcepub fn builder() -> QnAIntentConfigurationBuilder
pub fn builder() -> QnAIntentConfigurationBuilder
Creates a new builder-style object to manufacture QnAIntentConfiguration.
Trait Implementations§
source§impl Clone for QnAIntentConfiguration
impl Clone for QnAIntentConfiguration
source§fn clone(&self) -> QnAIntentConfiguration
fn clone(&self) -> QnAIntentConfiguration
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 QnAIntentConfiguration
impl Debug for QnAIntentConfiguration
source§impl PartialEq for QnAIntentConfiguration
impl PartialEq for QnAIntentConfiguration
source§fn eq(&self, other: &QnAIntentConfiguration) -> bool
fn eq(&self, other: &QnAIntentConfiguration) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for QnAIntentConfiguration
Auto Trait Implementations§
impl RefUnwindSafe for QnAIntentConfiguration
impl Send for QnAIntentConfiguration
impl Sync for QnAIntentConfiguration
impl Unpin for QnAIntentConfiguration
impl UnwindSafe for QnAIntentConfiguration
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.