#[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 more
sourceimpl 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
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &DescribeBotVersionOutput) -> bool
fn ne(&self, other: &DescribeBotVersionOutput) -> bool
This method tests for !=.
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 T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
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
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more