Struct aws_sdk_lexmodelsv2::types::BotSummary
source · #[non_exhaustive]pub struct BotSummary { /* private fields */ }Expand description
Summary information about a bot returned by the ListBots operation.
Implementations§
source§impl 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.
source§impl BotSummary
impl BotSummary
sourcepub fn builder() -> BotSummaryBuilder
pub fn builder() -> BotSummaryBuilder
Creates a new builder-style object to manufacture BotSummary.
Trait Implementations§
source§impl Clone for BotSummary
impl Clone for BotSummary
source§fn clone(&self) -> BotSummary
fn clone(&self) -> BotSummary
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 BotSummary
impl Debug for BotSummary
source§impl PartialEq<BotSummary> for BotSummary
impl PartialEq<BotSummary> for BotSummary
source§fn eq(&self, other: &BotSummary) -> bool
fn eq(&self, other: &BotSummary) -> bool
This method tests for
self and other values to be equal, and is used
by ==.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§
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