#[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.impl StructuralPartialEq for DeleteBotAliasOutput
Auto Trait Implementations§
impl Freeze for DeleteBotAliasOutput
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more