Struct aws_sdk_lexmodelsv2::output::CreateIntentOutput
source · #[non_exhaustive]pub struct CreateIntentOutput { /* private fields */ }Implementations§
source§impl CreateIntentOutput
impl CreateIntentOutput
sourcepub fn intent_name(&self) -> Option<&str>
pub fn intent_name(&self) -> Option<&str>
The name specified for the intent.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The description specified for the intent.
sourcepub fn parent_intent_signature(&self) -> Option<&str>
pub fn parent_intent_signature(&self) -> Option<&str>
The signature of the parent intent specified for the intent.
sourcepub fn sample_utterances(&self) -> Option<&[SampleUtterance]>
pub fn sample_utterances(&self) -> Option<&[SampleUtterance]>
The sample utterances specified for the intent.
sourcepub fn dialog_code_hook(&self) -> Option<&DialogCodeHookSettings>
pub fn dialog_code_hook(&self) -> Option<&DialogCodeHookSettings>
The dialog Lambda function specified for the intent.
sourcepub fn fulfillment_code_hook(&self) -> Option<&FulfillmentCodeHookSettings>
pub fn fulfillment_code_hook(&self) -> Option<&FulfillmentCodeHookSettings>
The fulfillment Lambda function specified for the intent.
sourcepub fn intent_confirmation_setting(&self) -> Option<&IntentConfirmationSetting>
pub fn intent_confirmation_setting(&self) -> Option<&IntentConfirmationSetting>
The confirmation setting specified for the intent.
sourcepub fn intent_closing_setting(&self) -> Option<&IntentClosingSetting>
pub fn intent_closing_setting(&self) -> Option<&IntentClosingSetting>
The closing setting specified for the intent.
sourcepub fn input_contexts(&self) -> Option<&[InputContext]>
pub fn input_contexts(&self) -> Option<&[InputContext]>
The list of input contexts specified for the intent.
sourcepub fn output_contexts(&self) -> Option<&[OutputContext]>
pub fn output_contexts(&self) -> Option<&[OutputContext]>
The list of output contexts specified for the intent.
sourcepub fn kendra_configuration(&self) -> Option<&KendraConfiguration>
pub fn kendra_configuration(&self) -> Option<&KendraConfiguration>
Configuration for searching a Amazon Kendra index specified for the intent.
sourcepub fn bot_version(&self) -> Option<&str>
pub fn bot_version(&self) -> Option<&str>
The identifier of the version of the bot associated with the intent.
sourcepub fn creation_date_time(&self) -> Option<&DateTime>
pub fn creation_date_time(&self) -> Option<&DateTime>
A timestamp of the date and time that the intent was created.
sourcepub fn initial_response_setting(&self) -> Option<&InitialResponseSetting>
pub fn initial_response_setting(&self) -> Option<&InitialResponseSetting>
Configuration settings for the response that is sent to the user at the beginning of a conversation, before eliciting slot values.
source§impl CreateIntentOutput
impl CreateIntentOutput
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture CreateIntentOutput.
Trait Implementations§
source§impl Clone for CreateIntentOutput
impl Clone for CreateIntentOutput
source§fn clone(&self) -> CreateIntentOutput
fn clone(&self) -> CreateIntentOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for CreateIntentOutput
impl Debug for CreateIntentOutput
source§impl PartialEq<CreateIntentOutput> for CreateIntentOutput
impl PartialEq<CreateIntentOutput> for CreateIntentOutput
source§fn eq(&self, other: &CreateIntentOutput) -> bool
fn eq(&self, other: &CreateIntentOutput) -> bool
self and other values to be equal, and is used
by ==.