#[non_exhaustive]pub struct DescribeBotVersionOutput { /* private fields */ }Implementations
sourceimpl DescribeBotVersionOutput
impl DescribeBotVersionOutput
sourcepub fn bot_version(&self) -> Option<&str>
pub fn bot_version(&self) -> Option<&str>
The version of the bot to describe.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The description specified for the bot.
sourcepub fn role_arn(&self) -> Option<&str>
pub fn role_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of an IAM role that has permission to access the bot version.
sourcepub fn data_privacy(&self) -> Option<&DataPrivacy>
pub fn data_privacy(&self) -> Option<&DataPrivacy>
Data privacy settings for the bot version.
sourcepub fn idle_session_ttl_in_seconds(&self) -> Option<i32>
pub fn idle_session_ttl_in_seconds(&self) -> Option<i32>
The number of seconds that a session with the bot remains active before it is discarded by Amazon Lex.
sourcepub fn bot_status(&self) -> Option<&BotStatus>
pub fn bot_status(&self) -> Option<&BotStatus>
The current status of the bot. When the status is Available, the bot version is ready for use.
sourcepub fn failure_reasons(&self) -> Option<&[String]>
pub fn failure_reasons(&self) -> Option<&[String]>
If the botStatus is Failed, this contains a list of reasons that the version couldn't be built.
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 bot version was created.
sourceimpl DescribeBotVersionOutput
impl DescribeBotVersionOutput
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture DescribeBotVersionOutput.
Trait Implementations
sourceimpl Clone for DescribeBotVersionOutput
impl Clone for DescribeBotVersionOutput
sourcefn clone(&self) -> DescribeBotVersionOutput
fn clone(&self) -> DescribeBotVersionOutput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for DescribeBotVersionOutput
impl Debug for DescribeBotVersionOutput
sourceimpl PartialEq<DescribeBotVersionOutput> for DescribeBotVersionOutput
impl PartialEq<DescribeBotVersionOutput> for DescribeBotVersionOutput
sourcefn eq(&self, other: &DescribeBotVersionOutput) -> bool
fn eq(&self, other: &DescribeBotVersionOutput) -> bool
impl StructuralPartialEq for DescribeBotVersionOutput
Auto Trait Implementations
impl RefUnwindSafe for DescribeBotVersionOutput
impl Send for DescribeBotVersionOutput
impl Sync for DescribeBotVersionOutput
impl Unpin for DescribeBotVersionOutput
impl UnwindSafe for DescribeBotVersionOutput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more