#[non_exhaustive]pub struct DescribeBotVersionOutput {
pub bot_id: Option<String>,
pub bot_name: Option<String>,
pub bot_version: Option<String>,
pub description: Option<String>,
pub role_arn: Option<String>,
pub data_privacy: Option<DataPrivacy>,
pub idle_session_ttl_in_seconds: Option<i32>,
pub bot_status: Option<BotStatus>,
pub failure_reasons: Option<Vec<String>>,
pub creation_date_time: Option<DateTime>,
}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 bot that contains the version.
bot_name: Option<String>The name of the bot that contains the version.
bot_version: Option<String>The version of the bot to describe.
description: Option<String>The description specified for the bot.
role_arn: Option<String>The Amazon Resource Name (ARN) of an IAM role that has permission to access the bot version.
data_privacy: Option<DataPrivacy>Data privacy settings for the bot version.
idle_session_ttl_in_seconds: Option<i32>The number of seconds that a session with the bot remains active before it is discarded by Amazon Lex.
bot_status: Option<BotStatus>The current status of the bot. When the status is Available, the bot version is ready for use.
failure_reasons: Option<Vec<String>>If the botStatus is Failed, this contains a list of reasons that the version couldn't be built.
creation_date_time: Option<DateTime>A timestamp of the date and time that the bot version was created.
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> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more
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