Struct aws_sdk_lexmodelsv2::operation::start_bot_resource_generation::StartBotResourceGenerationInput
source · #[non_exhaustive]pub struct StartBotResourceGenerationInput {
pub generation_input_prompt: Option<String>,
pub bot_id: Option<String>,
pub bot_version: Option<String>,
pub locale_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.generation_input_prompt: Option<String>The prompt to generate intents and slot types for the bot locale. Your description should be both detailed and precise to help generate appropriate and sufficient intents for your bot. Include a list of actions to improve the intent creation process.
bot_id: Option<String>The unique identifier of the bot for which to generate intents and slot types.
bot_version: Option<String>The version of the bot for which to generate intents and slot types.
locale_id: Option<String>The locale of the bot for which to generate intents and slot types.
Implementations§
source§impl StartBotResourceGenerationInput
impl StartBotResourceGenerationInput
sourcepub fn generation_input_prompt(&self) -> Option<&str>
pub fn generation_input_prompt(&self) -> Option<&str>
The prompt to generate intents and slot types for the bot locale. Your description should be both detailed and precise to help generate appropriate and sufficient intents for your bot. Include a list of actions to improve the intent creation process.
sourcepub fn bot_id(&self) -> Option<&str>
pub fn bot_id(&self) -> Option<&str>
The unique identifier of the bot for which to generate intents and slot types.
sourcepub fn bot_version(&self) -> Option<&str>
pub fn bot_version(&self) -> Option<&str>
The version of the bot for which to generate intents and slot types.
source§impl StartBotResourceGenerationInput
impl StartBotResourceGenerationInput
sourcepub fn builder() -> StartBotResourceGenerationInputBuilder
pub fn builder() -> StartBotResourceGenerationInputBuilder
Creates a new builder-style object to manufacture StartBotResourceGenerationInput.
Trait Implementations§
source§impl Clone for StartBotResourceGenerationInput
impl Clone for StartBotResourceGenerationInput
source§fn clone(&self) -> StartBotResourceGenerationInput
fn clone(&self) -> StartBotResourceGenerationInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl PartialEq for StartBotResourceGenerationInput
impl PartialEq for StartBotResourceGenerationInput
source§fn eq(&self, other: &StartBotResourceGenerationInput) -> bool
fn eq(&self, other: &StartBotResourceGenerationInput) -> bool
self and other values to be equal, and is used
by ==.