#[non_exhaustive]pub struct DeleteBotAliasOutput { /* private fields */ }Implementations§
source§impl DeleteBotAliasOutput
impl DeleteBotAliasOutput
sourcepub fn bot_alias_id(&self) -> Option<&str>
pub fn bot_alias_id(&self) -> Option<&str>
The unique identifier of the bot alias to delete.
sourcepub fn bot_id(&self) -> Option<&str>
pub fn bot_id(&self) -> Option<&str>
The unique identifier of the bot that contains the alias to delete.
sourcepub fn bot_alias_status(&self) -> Option<&BotAliasStatus>
pub fn bot_alias_status(&self) -> Option<&BotAliasStatus>
The current status of the alias. The status is Deleting while the alias is in the process of being deleted. Once the alias is deleted, it will no longer appear in the list of aliases returned by the ListBotAliases operation.
source§impl DeleteBotAliasOutput
impl DeleteBotAliasOutput
sourcepub fn builder() -> DeleteBotAliasOutputBuilder
pub fn builder() -> DeleteBotAliasOutputBuilder
Creates a new builder-style object to manufacture DeleteBotAliasOutput.
Trait Implementations§
source§impl Clone for DeleteBotAliasOutput
impl Clone for DeleteBotAliasOutput
source§fn clone(&self) -> DeleteBotAliasOutput
fn clone(&self) -> DeleteBotAliasOutput
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 DeleteBotAliasOutput
impl Debug for DeleteBotAliasOutput
source§impl PartialEq<DeleteBotAliasOutput> for DeleteBotAliasOutput
impl PartialEq<DeleteBotAliasOutput> for DeleteBotAliasOutput
source§fn eq(&self, other: &DeleteBotAliasOutput) -> bool
fn eq(&self, other: &DeleteBotAliasOutput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl RequestId for DeleteBotAliasOutput
impl RequestId for DeleteBotAliasOutput
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 DeleteBotAliasOutput
Auto Trait Implementations§
impl RefUnwindSafe for DeleteBotAliasOutput
impl Send for DeleteBotAliasOutput
impl Sync for DeleteBotAliasOutput
impl Unpin for DeleteBotAliasOutput
impl UnwindSafe for DeleteBotAliasOutput
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