Struct aws_sdk_lexmodelsv2::types::BotAliasSummary
source · #[non_exhaustive]pub struct BotAliasSummary { /* private fields */ }Expand description
Summary information about bot aliases returned from the ListBotAliases operation.
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
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for BotAliasSummary
impl Debug for BotAliasSummary
source§impl PartialEq<BotAliasSummary> for BotAliasSummary
impl PartialEq<BotAliasSummary> for BotAliasSummary
source§fn eq(&self, other: &BotAliasSummary) -> bool
fn eq(&self, other: &BotAliasSummary) -> bool
This method tests for
self and other values to be equal, and is used
by ==.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§
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
Mutably borrows from an owned value. Read more