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§
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() -> Builder
pub fn builder() -> Builder
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 more