Struct aws_sdk_lexmodelsv2::model::BotAliasSummary
source · [−]#[non_exhaustive]pub struct BotAliasSummary { /* private fields */ }Expand description
Summary information about bot aliases returned from the ListBotAliases operation.
Implementations
sourceimpl 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.
sourceimpl BotAliasSummary
impl BotAliasSummary
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture BotAliasSummary.
Trait Implementations
sourceimpl Clone for BotAliasSummary
impl Clone for BotAliasSummary
sourcefn clone(&self) -> BotAliasSummary
fn clone(&self) -> BotAliasSummary
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 moresourceimpl Debug for BotAliasSummary
impl Debug for BotAliasSummary
sourceimpl PartialEq<BotAliasSummary> for BotAliasSummary
impl PartialEq<BotAliasSummary> for BotAliasSummary
sourcefn eq(&self, other: &BotAliasSummary) -> bool
fn eq(&self, other: &BotAliasSummary) -> bool
impl StructuralPartialEq for BotAliasSummary
Auto Trait Implementations
impl RefUnwindSafe for BotAliasSummary
impl Send for BotAliasSummary
impl Sync for BotAliasSummary
impl Unpin for BotAliasSummary
impl UnwindSafe for BotAliasSummary
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
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