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
impl StructuralPartialEq for BotAliasSummary
Auto Trait Implementations§
impl Freeze for BotAliasSummary
impl RefUnwindSafe for BotAliasSummary
impl Send for BotAliasSummary
impl Sync for BotAliasSummary
impl Unpin for BotAliasSummary
impl UnwindSafe for BotAliasSummary
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more