pub struct PutBotAliasResponse {
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>,
pub tags: Option<Vec<Tag>>,
}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>The checksum for the current version of the 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 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 alias.
A list of tags associated with a bot.
Trait Implementations§
Source§impl Clone for PutBotAliasResponse
impl Clone for PutBotAliasResponse
Source§fn clone(&self) -> PutBotAliasResponse
fn clone(&self) -> PutBotAliasResponse
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 PutBotAliasResponse
impl Debug for PutBotAliasResponse
Source§impl Default for PutBotAliasResponse
impl Default for PutBotAliasResponse
Source§fn default() -> PutBotAliasResponse
fn default() -> PutBotAliasResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PutBotAliasResponse
impl<'de> Deserialize<'de> for PutBotAliasResponse
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 PutBotAliasResponse
impl PartialEq for PutBotAliasResponse
impl StructuralPartialEq for PutBotAliasResponse
Auto Trait Implementations§
impl Freeze for PutBotAliasResponse
impl RefUnwindSafe for PutBotAliasResponse
impl Send for PutBotAliasResponse
impl Sync for PutBotAliasResponse
impl Unpin for PutBotAliasResponse
impl UnwindSafe for PutBotAliasResponse
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