#[non_exhaustive]pub struct DeleteBotAliasOutput {
pub bot_alias_id: Option<String>,
pub bot_id: Option<String>,
pub bot_alias_status: Option<BotAliasStatus>,
/* private fields */
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.bot_alias_id: Option<String>
The unique identifier of the bot alias to delete.
bot_id: Option<String>
The unique identifier of the bot that contains the alias to delete.
bot_alias_status: 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.
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
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for DeleteBotAliasOutput
impl Debug for DeleteBotAliasOutput
source§impl PartialEq for DeleteBotAliasOutput
impl PartialEq for DeleteBotAliasOutput
source§fn eq(&self, other: &DeleteBotAliasOutput) -> bool
fn eq(&self, other: &DeleteBotAliasOutput) -> bool
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>
None
if the service could not be reached.