#[non_exhaustive]pub struct BuildBotLocaleOutput {
pub bot_id: Option<String>,
pub bot_version: Option<String>,
pub locale_id: Option<String>,
pub bot_locale_status: Option<BotLocaleStatus>,
pub last_build_submitted_date_time: Option<DateTime>,
/* private fields */
}
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.bot_id: Option<String>
The identifier of the specified bot.
bot_version: Option<String>
The version of the bot that was built. This is only the draft version of the bot.
locale_id: Option<String>
The language and locale specified of where the bot can be used.
bot_locale_status: Option<BotLocaleStatus>
The bot's build status. When the status is ReadyExpressTesting
you can test the bot using the utterances defined for the intents and slot types. When the status is Built
, the bot is ready for use and can be tested using any utterance.
last_build_submitted_date_time: Option<DateTime>
A timestamp indicating the date and time that the bot was last built for this locale.
Implementations§
source§impl BuildBotLocaleOutput
impl BuildBotLocaleOutput
sourcepub fn bot_version(&self) -> Option<&str>
pub fn bot_version(&self) -> Option<&str>
The version of the bot that was built. This is only the draft version of the bot.
sourcepub fn locale_id(&self) -> Option<&str>
pub fn locale_id(&self) -> Option<&str>
The language and locale specified of where the bot can be used.
sourcepub fn bot_locale_status(&self) -> Option<&BotLocaleStatus>
pub fn bot_locale_status(&self) -> Option<&BotLocaleStatus>
The bot's build status. When the status is ReadyExpressTesting
you can test the bot using the utterances defined for the intents and slot types. When the status is Built
, the bot is ready for use and can be tested using any utterance.
sourcepub fn last_build_submitted_date_time(&self) -> Option<&DateTime>
pub fn last_build_submitted_date_time(&self) -> Option<&DateTime>
A timestamp indicating the date and time that the bot was last built for this locale.
source§impl BuildBotLocaleOutput
impl BuildBotLocaleOutput
sourcepub fn builder() -> BuildBotLocaleOutputBuilder
pub fn builder() -> BuildBotLocaleOutputBuilder
Creates a new builder-style object to manufacture BuildBotLocaleOutput
.
Trait Implementations§
source§impl Clone for BuildBotLocaleOutput
impl Clone for BuildBotLocaleOutput
source§fn clone(&self) -> BuildBotLocaleOutput
fn clone(&self) -> BuildBotLocaleOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for BuildBotLocaleOutput
impl Debug for BuildBotLocaleOutput
source§impl PartialEq for BuildBotLocaleOutput
impl PartialEq for BuildBotLocaleOutput
source§fn eq(&self, other: &BuildBotLocaleOutput) -> bool
fn eq(&self, other: &BuildBotLocaleOutput) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for BuildBotLocaleOutput
impl RequestId for BuildBotLocaleOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.