pub struct GetBotAliasResponse {
pub bot_name: Option<String>,
pub bot_version: Option<String>,
pub checksum: Option<String>,
pub conversation_logs: Option<ConversationLogsResponse>,
pub created_date: Option<f64>,
pub description: Option<String>,
pub last_updated_date: Option<f64>,
pub name: Option<String>,
}Fields§
§bot_name: Option<String>The name of the bot that the alias points to.
bot_version: Option<String>The version of the bot that the alias points to.
checksum: Option<String>Checksum of the bot alias.
conversation_logs: Option<ConversationLogsResponse>The settings that determine how Amazon Lex uses conversation logs for the alias.
created_date: Option<f64>The date that the bot alias was created.
description: Option<String>A description of the bot alias.
last_updated_date: Option<f64>The date that the bot alias was updated. When you create a resource, the creation date and the last updated date are the same.
name: Option<String>The name of the bot alias.
Trait Implementations§
Source§impl Clone for GetBotAliasResponse
impl Clone for GetBotAliasResponse
Source§fn clone(&self) -> GetBotAliasResponse
fn clone(&self) -> GetBotAliasResponse
Returns a duplicate 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 GetBotAliasResponse
impl Debug for GetBotAliasResponse
Source§impl Default for GetBotAliasResponse
impl Default for GetBotAliasResponse
Source§fn default() -> GetBotAliasResponse
fn default() -> GetBotAliasResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetBotAliasResponse
impl<'de> Deserialize<'de> for GetBotAliasResponse
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for GetBotAliasResponse
impl PartialEq for GetBotAliasResponse
impl StructuralPartialEq for GetBotAliasResponse
Auto Trait Implementations§
impl Freeze for GetBotAliasResponse
impl RefUnwindSafe for GetBotAliasResponse
impl Send for GetBotAliasResponse
impl Sync for GetBotAliasResponse
impl Unpin for GetBotAliasResponse
impl UnwindSafe for GetBotAliasResponse
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