Struct aws_sdk_lexmodelsv2::model::BotSummary
source · [−]#[non_exhaustive]pub struct BotSummary { /* private fields */ }Expand description
Summary information about a bot returned by the ListBots operation.
Implementations
sourceimpl BotSummary
impl BotSummary
sourcepub fn bot_id(&self) -> Option<&str>
pub fn bot_id(&self) -> Option<&str>
The unique identifier assigned to the bot. Use this ID to get detailed information about the bot with the DescribeBot operation.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The description of the bot.
sourcepub fn bot_status(&self) -> Option<&BotStatus>
pub fn bot_status(&self) -> Option<&BotStatus>
The current status of the bot. When the status is Available the bot is ready for use.
sourcepub fn latest_bot_version(&self) -> Option<&str>
pub fn latest_bot_version(&self) -> Option<&str>
The latest numerical version in use for the bot.
sourcepub fn last_updated_date_time(&self) -> Option<&DateTime>
pub fn last_updated_date_time(&self) -> Option<&DateTime>
The date and time that the bot was last updated.
sourceimpl BotSummary
impl BotSummary
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture BotSummary.
Trait Implementations
sourceimpl Clone for BotSummary
impl Clone for BotSummary
sourcefn clone(&self) -> BotSummary
fn clone(&self) -> BotSummary
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 BotSummary
impl Debug for BotSummary
sourceimpl PartialEq<BotSummary> for BotSummary
impl PartialEq<BotSummary> for BotSummary
sourcefn eq(&self, other: &BotSummary) -> bool
fn eq(&self, other: &BotSummary) -> bool
impl StructuralPartialEq for BotSummary
Auto Trait Implementations
impl RefUnwindSafe for BotSummary
impl Send for BotSummary
impl Sync for BotSummary
impl Unpin for BotSummary
impl UnwindSafe for BotSummary
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