pub struct BotAliasMetadata {
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>,
}Expand description
Provides information about a bot alias.
Fields§
§bot_name: Option<String>The name of the bot to which the alias points.
bot_version: Option<String>The version of the Amazon Lex bot to which the alias points.
checksum: Option<String>Checksum of the bot alias.
conversation_logs: Option<ConversationLogsResponse>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 last updated date are the same.
name: Option<String>The name of the bot alias.
Trait Implementations§
Source§impl Clone for BotAliasMetadata
impl Clone for BotAliasMetadata
Source§fn clone(&self) -> BotAliasMetadata
fn clone(&self) -> BotAliasMetadata
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 BotAliasMetadata
impl Debug for BotAliasMetadata
Source§impl Default for BotAliasMetadata
impl Default for BotAliasMetadata
Source§fn default() -> BotAliasMetadata
fn default() -> BotAliasMetadata
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BotAliasMetadata
impl<'de> Deserialize<'de> for BotAliasMetadata
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 BotAliasMetadata
impl PartialEq for BotAliasMetadata
impl StructuralPartialEq for BotAliasMetadata
Auto Trait Implementations§
impl Freeze for BotAliasMetadata
impl RefUnwindSafe for BotAliasMetadata
impl Send for BotAliasMetadata
impl Sync for BotAliasMetadata
impl Unpin for BotAliasMetadata
impl UnwindSafe for BotAliasMetadata
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