Struct aws_sdk_lexmodelsv2::types::BotAliasSummary
source · #[non_exhaustive]pub struct BotAliasSummary {
pub bot_alias_id: Option<String>,
pub bot_alias_name: Option<String>,
pub description: Option<String>,
pub bot_version: Option<String>,
pub bot_alias_status: Option<BotAliasStatus>,
pub creation_date_time: Option<DateTime>,
pub last_updated_date_time: Option<DateTime>,
}
Expand description
Summary information about bot aliases returned from the ListBotAliases operation.
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_alias_id: Option<String>
The unique identifier assigned to the bot alias. You can use this ID to get detailed information about the alias using the DescribeBotAlias operation.
bot_alias_name: Option<String>
The name of the bot alias.
description: Option<String>
The description of the bot alias.
bot_version: Option<String>
The version of the bot that the bot alias references.
bot_alias_status: Option<BotAliasStatus>
The current state of the bot alias. If the status is Available
, the alias is ready for use.
creation_date_time: Option<DateTime>
A timestamp of the date and time that the bot alias was created.
last_updated_date_time: Option<DateTime>
A timestamp of the date and time that the bot alias was last updated.
Implementations§
source§impl BotAliasSummary
impl BotAliasSummary
sourcepub fn bot_alias_id(&self) -> Option<&str>
pub fn bot_alias_id(&self) -> Option<&str>
The unique identifier assigned to the bot alias. You can use this ID to get detailed information about the alias using the DescribeBotAlias operation.
sourcepub fn bot_alias_name(&self) -> Option<&str>
pub fn bot_alias_name(&self) -> Option<&str>
The name of the bot alias.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The description of the bot alias.
sourcepub fn bot_version(&self) -> Option<&str>
pub fn bot_version(&self) -> Option<&str>
The version of the bot that the bot alias references.
sourcepub fn bot_alias_status(&self) -> Option<&BotAliasStatus>
pub fn bot_alias_status(&self) -> Option<&BotAliasStatus>
The current state of the bot alias. If the status is Available
, the alias is ready for use.
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 alias was created.
sourcepub fn last_updated_date_time(&self) -> Option<&DateTime>
pub fn last_updated_date_time(&self) -> Option<&DateTime>
A timestamp of the date and time that the bot alias was last updated.
source§impl BotAliasSummary
impl BotAliasSummary
sourcepub fn builder() -> BotAliasSummaryBuilder
pub fn builder() -> BotAliasSummaryBuilder
Creates a new builder-style object to manufacture BotAliasSummary
.
Trait Implementations§
source§impl Clone for BotAliasSummary
impl Clone for BotAliasSummary
source§fn clone(&self) -> BotAliasSummary
fn clone(&self) -> BotAliasSummary
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for BotAliasSummary
impl Debug for BotAliasSummary
source§impl PartialEq for BotAliasSummary
impl PartialEq for BotAliasSummary
source§fn eq(&self, other: &BotAliasSummary) -> bool
fn eq(&self, other: &BotAliasSummary) -> bool
self
and other
values to be equal, and is used
by ==
.