#[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
The version of the bot to describe.
The description specified for the bot.
The Amazon Resource Name (ARN) of an IAM role that has permission to access the bot version.
Data privacy settings for the bot version.
The number of seconds that a session with the bot remains active before it is discarded by Amazon Lex.
The current status of the bot. When the status is Available, the bot version is ready for use.
If the botStatus is Failed, this contains a list of reasons that the version couldn't be built.
A timestamp of the date and time that the bot version was created.
Creates a new builder-style object to manufacture DescribeBotVersionOutput
Trait Implementations
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
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
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more