Struct aws_sdk_lexmodelsv2::operation::update_bot::UpdateBotOutput
source · #[non_exhaustive]pub struct UpdateBotOutput { /* private fields */ }Implementations§
source§impl UpdateBotOutput
impl UpdateBotOutput
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The description of the bot after the update.
sourcepub fn role_arn(&self) -> Option<&str>
pub fn role_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the IAM role used by the bot after the update.
sourcepub fn data_privacy(&self) -> Option<&DataPrivacy>
pub fn data_privacy(&self) -> Option<&DataPrivacy>
The data privacy settings for the bot after the update.
sourcepub fn idle_session_ttl_in_seconds(&self) -> Option<i32>
pub fn idle_session_ttl_in_seconds(&self) -> Option<i32>
The session timeout, in seconds, for the bot after the update.
sourcepub fn bot_status(&self) -> Option<&BotStatus>
pub fn bot_status(&self) -> Option<&BotStatus>
Shows the current status of the bot. The bot is first in the Creating status. Once the bot is read for use, it changes to the Available status. After the bot is created, you can use the DRAFT version of the bot.
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 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 was last updated.
sourcepub fn bot_members(&self) -> Option<&[BotMember]>
pub fn bot_members(&self) -> Option<&[BotMember]>
The list of bot members in the network that was updated.
source§impl UpdateBotOutput
impl UpdateBotOutput
sourcepub fn builder() -> UpdateBotOutputBuilder
pub fn builder() -> UpdateBotOutputBuilder
Creates a new builder-style object to manufacture UpdateBotOutput.
Trait Implementations§
source§impl Clone for UpdateBotOutput
impl Clone for UpdateBotOutput
source§fn clone(&self) -> UpdateBotOutput
fn clone(&self) -> UpdateBotOutput
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 UpdateBotOutput
impl Debug for UpdateBotOutput
source§impl PartialEq<UpdateBotOutput> for UpdateBotOutput
impl PartialEq<UpdateBotOutput> for UpdateBotOutput
source§fn eq(&self, other: &UpdateBotOutput) -> bool
fn eq(&self, other: &UpdateBotOutput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl RequestId for UpdateBotOutput
impl RequestId for UpdateBotOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None if the service could not be reached.impl StructuralPartialEq for UpdateBotOutput
Auto Trait Implementations§
impl RefUnwindSafe for UpdateBotOutput
impl Send for UpdateBotOutput
impl Sync for UpdateBotOutput
impl Unpin for UpdateBotOutput
impl UnwindSafe for UpdateBotOutput
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